Onboarding Justifications
Operations Summary
| Method | Endpoint | Description |
|---|---|---|
| Core CRUD | ||
| GET | /api/onboarding-justifications/ |
List Onboarding Justifications |
| GET | /api/onboarding-justifications/{uuid}/ |
Retrieve |
| POST | /api/onboarding-justifications/ |
Create |
| POST | /api/onboarding-justifications/create_justification/ |
Create justification for failed verification |
| PUT | /api/onboarding-justifications/{uuid}/ |
Update |
| PATCH | /api/onboarding-justifications/{uuid}/ |
Partial Update |
| DELETE | /api/onboarding-justifications/{uuid}/ |
Delete |
| Other Actions | ||
| POST | /api/onboarding-justifications/{uuid}/approve/ |
Approve justification and mark verification as VERIFIED |
| POST | /api/onboarding-justifications/{uuid}/attach_document/ |
Attach supporting document to justification |
| POST | /api/onboarding-justifications/{uuid}/reject/ |
Reject justification and mark verification as FAILED |
Core CRUD
List Onboarding Justifications
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 | |
- API Source:
onboarding_justifications_list
1 2 3 4 5 6 7 8 9 10 | |
| Name | Type | Description |
|---|---|---|
page |
integer | A page number within the paginated result set. |
page_size |
integer | Number of results to return per page. |
200 -
The response body is an array of objects, where each object has the following structure:
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Retrieve
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
onboarding_justifications_retrieve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Create
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
OnboardingJustificationRequest - API Source:
onboarding_justifications_create
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
verification |
string (uri) | ✓ | |
user_justification |
string | User's explanation for why they should be authorized |
201 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Create justification for failed verification
Create justification for failed verification.
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
- Model Source:
OnboardingJustificationCreateRequest - API Source:
onboarding_justifications_create_justification
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Field | Type | Required | Description |
|---|---|---|---|
verification_uuid |
string (uuid) | ✓ | UUID of the OnboardingVerification to justify |
user_justification |
string | User's explanation for why they should be authorized |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Update
1 2 3 4 5 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | |
- Model Source:
OnboardingJustificationRequest - API Source:
onboarding_justifications_update
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
verification |
string (uri) | ✓ | |
user_justification |
string | User's explanation for why they should be authorized |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Partial Update
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
PatchedOnboardingJustificationRequest - API Source:
onboarding_justifications_partial_update
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
verification |
string (uri) | ||
user_justification |
string | User's explanation for why they should be authorized |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Delete
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 | |
- API Source:
onboarding_justifications_destroy
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
204 - No response body
Other Actions
Approve justification and mark verification as VERIFIED
Approve justification and mark verification as VERIFIED.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
OnboardingJustificationReviewRequest - API Source:
onboarding_justifications_approve
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
staff_notes |
string | Administrator notes about the review decision |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |
Attach supporting document to justification
Attach supporting document to justification.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
OnboardingJustificationDocumentationRequest - API Source:
onboarding_justifications_attach_document
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
file |
string (binary) | Upload supporting documentation. |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
file |
string (uri) | Upload supporting documentation. |
file_name |
string | |
file_size |
integer | |
created |
string (date-time) |
Reject justification and mark verification as FAILED
Reject justification and mark verification as FAILED.
1 2 3 4 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
- Model Source:
OnboardingJustificationReviewRequest - API Source:
onboarding_justifications_reject
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
| Name | Type | Required |
|---|---|---|
uuid |
string (uuid) | ✓ |
| Field | Type | Required | Description |
|---|---|---|---|
staff_notes |
string | Administrator notes about the review decision |
200 -
| Field | Type | Description |
|---|---|---|
uuid |
string (uuid) | |
verification |
string (uri) | |
verification_uuid |
string (uuid) | |
country |
string | |
user |
string (uri) | |
legal_person_identifier |
string | |
legal_name |
string | |
error_message |
string | |
error_traceback |
string | |
user_justification |
string | User's explanation for why they should be authorized |
validated_by |
string (uri) | |
validated_at |
string (date-time) | |
validation_decision |
any | |
staff_notes |
string | Administrator notes on the review decision |
supporting_documentation |
array of objects | |
supporting_documentation.uuid |
string (uuid) | |
supporting_documentation.file |
string (uri) | Upload supporting documentation. |
supporting_documentation.file_name |
string | |
supporting_documentation.file_size |
integer | |
supporting_documentation.created |
string (date-time) | |
created |
string (date-time) | |
modified |
string (date-time) |