Marketplace Offering User Checklist Completions
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| GET | /api/marketplace-offering-user-checklist-completions/ |
List checklist completions for offering users |
| GET | /api/marketplace-offering-user-checklist-completions/{id}/ |
Retrieve a checklist completion |
List checklist completions for offering users
1 2 3 | |
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
created |
string (date-time) | Created after |
is_completed |
boolean | |
modified |
string (date-time) | Modified after |
o |
array | Ordering |
offering_uuid |
string (uuid) | Filter by offering UUID |
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
user_uuid |
string (uuid) | Filter by user UUID |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
offering_user |
any | |
offering_user_uuid |
string | |
offering_name |
string | |
offering_uuid |
string | |
customer_provider_uuid |
string | |
customer_provider_name |
string | |
checklist_uuid |
string | |
checklist_name |
string | |
checklist_description |
string | |
is_completed |
boolean | Whether all required questions have been answered |
completion_percentage |
number (double) | |
unanswered_required_questions |
integer | |
requires_review |
boolean | Whether any answers triggered review requirements |
reviewed_by |
integer | User who reviewed the checklist completion |
reviewed_at |
string (date-time) | |
review_notes |
string | Notes from the reviewer |
created |
string (date-time) | |
modified |
string (date-time) |
Retrieve a checklist completion
Returns the details of a specific checklist completion for an offering user.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required | Description |
|---|---|---|---|
id |
integer | ✓ | A unique integer value identifying this Checklist completion. |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
offering_user |
any | |
offering_user_uuid |
string | |
offering_name |
string | |
offering_uuid |
string | |
customer_provider_uuid |
string | |
customer_provider_name |
string | |
checklist_uuid |
string | |
checklist_name |
string | |
checklist_description |
string | |
is_completed |
boolean | Whether all required questions have been answered |
completion_percentage |
number (double) | |
unanswered_required_questions |
integer | |
requires_review |
boolean | Whether any answers triggered review requirements |
reviewed_by |
integer | User who reviewed the checklist completion |
reviewed_at |
string (date-time) | |
review_notes |
string | Notes from the reviewer |
created |
string (date-time) | |
modified |
string (date-time) |