Skip to main content
POST
https://finsync.ar
/
api
/
clients
Create external client
curl --request POST \
  --url https://finsync.ar/api/clients \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": 123,
  "name": "<string>",
  "description": "<string>",
  "company_id": 123,
  "type": 123,
  "company_client_id": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

x-api-key
string
header
required

API Key for authentication

Body

application/json
name
string
required

Client display name

Maximum string length: 100
description
string | null

Optional notes

Response

External client created

id
integer
name
string
description
string | null
company_id
integer
type
integer

Always 1 for this endpoint

company_client_id
integer
created_at
string<date-time>
updated_at
string<date-time>