Retrieves all contact persons for a specific contract.
Endpoint
GET /contracts/{contractId}/contact-personsAuthentication
Required: Authorization header with valid token
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
contractId | uuid | Yes | Contract unique identifier |
Response
Success (200)
Returns an array of ContactPerson Entity objects.
[
{
"id": "uuid",
"name": "string",
"position": "string",
"phone": "string",
"email": "string",
"isMain": "boolean",
"externalId": "string",
"contractId": "uuid",
"updatedAt": "date-time"
}
]Example Usage
curl -X GET "https://integration-api.ram.syniotec.com/master-data/v1/contract-management/contracts/123e4567-e89b-12d3-a456-426614174000/contact-persons" \
-H "Authorization: Bearer YOUR_TOKEN"