Get Contract Contact Persons

Retrieves all contact persons for a specific contract.

Endpoint

GET /contracts/{contractId}/contact-persons

Authentication

Required: Authorization header with valid token

Path Parameters

ParameterTypeRequiredDescription
contractIduuidYesContract 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"