POST /company-clients.json
POST /company-clients.json
curl \
-X POST http://api.example.com/v1/company-clients.json \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"clientId":42}'
Request example
{
"clientId": 42
}
Response examples (200)
{
"clientId": 42,
"createdAt": "2024-05-04T09:42:00+00:00",
"id": 42,
"updatedAt": "2024-05-04T09:42:00+00:00"
}