Specific Document Related Party Registration and Removal
This set of endpoints allows registering and removing related parties to an operation for a specific document of the operation.
Add Related Party to Document (POST)
Request
ENDPOINT
/commercial_paper/operation/OPERATION-KEY/formalization_documentFORMALIZATION-DOCUMENT-KEY/related_partyMETHOD
POSTPath Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
OPERATION-KEY * | string | Unique operation key (UUID v4). | 36 |
FORMALIZATION-DOCUMENT-KEY * | string | Unique operation document key (UUID v4). | 36 |
Request Body
{
"related_party_key": "48e2c597-f2ca-487e-9f06-2b628ecb831e"
}
Request Body Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
related_party_key * | string | Related Party Key |
Response
STATUS
204No content is returned in the response body.
Related Party Removal (DELETE)
Request
ENDPOINT
/commercial_paper/operation/OPERATION-KEY/formalization_document/FORMALIZATION-DOCUMENT-KEY/related_partyMETHOD
DELETEPath Params
| Field | Type | Description | Max Characters |
|---|---|---|---|
OPERATION-KEY * | string | Unique operation key (UUID v4). | 36 |
FORMALIZATION-DOCUMENT-KEY * | string | Unique operation document key (UUID v4). | 36 |
Request Body
{
"related_party_key": "48e2c597-f2ca-487e-9f06-2b628ecb831e"
}
Response
STATUS
204No content is returned in the response body.