API Reference
- Authentication
- Carriers
- Components (Embeddable UI)
- Connections
- Dependents
- Employer Documents
- Employers
- Enrollments
- Group Connections
- Members
- Pay Rates
- Payroll Benefits
- Groups
- Plans
- Plan Configurations
- Subclasses
- Tasks
- Reports
Connections
Submit Review
This should be called when the employer has reviewed all the plans and members we pulled from carriers to confirm that it’s correct.
POST
/
connections
/
{public_id}
/
submit_review
curl --request POST \
--url https://sandbox.withclasp.com/connections/{public_id}/submit_review \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"broker_url": "<string>",
"group_connections": [
{
"carrier": "<string>",
"broker_federal_ein": "<string>",
"group_id": "<string>",
"connection": "<string>"
}
],
"events": [
{
"category": "initial_connection",
"status": "not_started"
}
]
}'
{
"id": "<string>",
"broker_url": "<string>",
"employer": "<string>",
"group_connections": [
{
"id": "<string>",
"carrier": "<string>",
"status": "pending",
"broker_federal_ein": "<string>",
"group_id": "<string>",
"connection": "<string>",
"initiated_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
],
"events": [
{
"id": "<string>",
"category": "initial_connection",
"status": "not_started",
"created_at": "2023-11-07T05:31:56Z"
}
],
"status": "<any>"
}
Authorizations
API Key authentication with required prefix "Bearer"
Path Parameters
Body
Response
200 - application/json
The response is of type object
.
curl --request POST \
--url https://sandbox.withclasp.com/connections/{public_id}/submit_review \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"broker_url": "<string>",
"group_connections": [
{
"carrier": "<string>",
"broker_federal_ein": "<string>",
"group_id": "<string>",
"connection": "<string>"
}
],
"events": [
{
"category": "initial_connection",
"status": "not_started"
}
]
}'
{
"id": "<string>",
"broker_url": "<string>",
"employer": "<string>",
"group_connections": [
{
"id": "<string>",
"carrier": "<string>",
"status": "pending",
"broker_federal_ein": "<string>",
"group_id": "<string>",
"connection": "<string>",
"initiated_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
],
"events": [
{
"id": "<string>",
"category": "initial_connection",
"status": "not_started",
"created_at": "2023-11-07T05:31:56Z"
}
],
"status": "<any>"
}
Assistant
Responses are generated using AI and may contain mistakes.