# Organizational Contacts

## Get organizational contacts

 - [POST /api/v1/account/current/contacts](https://zonedevelopersdocumentationv1.redocly.app/apis/organizational-contacts/paths/~1api~1v1~1account~1current~1contacts/post.md): This endpoint returns organizational contacts associated with
the currently authenticated account.

Behavior:

- Fetches organizational contacts for the current account
- Supports filtering, paging, or sorting via the request model
- Returns a list of organizational contact details

## Add organizational contact

 - [POST /api/v1/account/current/contacts/Add](https://zonedevelopersdocumentationv1.redocly.app/apis/organizational-contacts/paths/~1api~1v1~1account~1current~1contacts~1add/post.md): This endpoint creates a new organizational contact associated with
the currently authenticated account.

Behavior:

- Validates and persists the organizational contact details
- Associates the contact with the current account
- Returns the newly created contact information

## Get organizational contact details

 - [GET /api/v1/account/current/contacts/{orgContactIdentifier}](https://zonedevelopersdocumentationv1.redocly.app/apis/organizational-contacts/paths/~1api~1v1~1account~1current~1contacts~1%7Borgcontactidentifier%7D/get.md): This endpoint returns detailed information for a single
organizational contact associated with the current account.

Behavior:

- Fetches organizational contact details by identifier
- Validates the contact against the current account
- Returns full contact information if found

## Update organizational contact

 - [POST /api/v1/account/current/contacts/{orgContactIdentifier}](https://zonedevelopersdocumentationv1.redocly.app/apis/organizational-contacts/paths/~1api~1v1~1account~1current~1contacts~1%7Borgcontactidentifier%7D/post.md): This endpoint updates the details of an organizational contact
associated with the current account.

Behavior:

- Updates the organizational contact identified by the route parameter
- Validates the contact against the current account
- Persists the updated contact information

