Removes a contact person from a specific contract. This action cannot be undone.
Endpoint
DELETE /contracts/{contractId}/contact-persons/{id}Authentication
Required: Authorization header with valid token
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
contractId | uuid | Yes | Contract unique identifier |
id | uuid | Yes | Contact person unique identifier |
Response
Success (200)
{
"success": true
}Error
Example Usage
curl -X DELETE "https://integration-api.ram.syniotec.com/master-data/v1/contract-management/contracts/123e4567-e89b-12d3-a456-426614174000/contact-persons/98765432-abcd-efgh-ijkl-123456789012" \
-H "Authorization: Bearer YOUR_TOKEN"