Skip to main content
POST
/
clients
Create a client
curl --request POST \
  --url https://{your-workspace}.neetoinvoice.com/api/external/v1/clients \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <x-api-key>' \
  --data '
{
  "client": {
    "name": "Neeto Client Inc.",
    "currency": "USD",
    "status": "active",
    "secondary_name": "Subsidiary Alpha",
    "default_invoice_due_in_days": "30",
    "internal_notes": "Preferred billing cycle: monthly"
  }
}
'
{
  "notice_code": "<string>",
  "client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
Replace {your-workspace} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying your subdomain.

Headers

X-Api-Key
string
default:your-api-key
required

X-Api-Key is used to authenticate requests using an API key. Provide your API key in this header to access protected endpoints. Refer to Authentication for more information.

Body

application/json
client
object

Response

200 - application/json

OK - Request succeeded

notice_code
string
client_id
string<uuid>