Delete Counterparty Group
DELETE /api/v1/Counterparties/groups/:id
Description
This endpoint is used to delete a counterparty group.
Headers:
- None
ApiKey:
- No API key required
Content-Type:
-
text/plain
-
application/json
-
text/json
Path Parameters:
-
version: string, required -
id: string, required (format: UUID)
Query Parameters:
- None
Request Body:
- None
URL:
- DELETE:
{{baseUrl API url}}/api/v1/Counterparties/groups/{id}
Response:
- A GuidResponse object containing the ID of the deleted counterparty group.
Error Codes:
-
400: Bad Request
-
404: Resource not found
-
500: Internal server error
Example:
Request:
DELETE /api/v1/Counterparties/groups/1234567890
Response:
HTTP/1.1 200 OK
{
"id": "1234567890",
"message": "Counterparty group deleted successfully"
}
Method: DELETE
/api/v1/Counterparties/groups/:id
Headers
| Content-Type | Value |
|---|---|
| Accept | text/plain |
Response: 200
{
"succeeded": "<boolean>",
"message": "<string>",
"errors": [
"<string>",
"<string>"
],
"data": "<uuid>"
}
LANGUAGE
CURL REQUEST
curl --request DELETE \
--url /api/v1/Counterparties/groups/:id \
--header 'accept: application/json' \
--header 'content-type: application/json'
RESPONSE
Click Try It! to start a request and see the response here!