Create a new client with the provided details.
This endpoint allows you to create new PDP client IDs that can be used with other API endpoints. Each client is associated with an external reference for easy identification in your systems.
Note: This endpoint does not require the X-PDP-Client-ID header since it's used to create new client IDs.
Security
APIKeyHeader
- Dev serverhttps://pdp.seqino.dev/api/clients
- Production serverhttps://pa.seqino.com/api/clients
curl -i -X POST \
https://pdp.seqino.dev/api/clients \
-H 'Authorization: YOUR_API_KEY_HERE' \
-H 'Content-Type: application/json' \
-d '{
"organization_name": "Acme Corporation",
"contact_email": "contact@acme.com",
"external_ref": "EXT-12345"
}'Client created successfully
Current status of the client
Enum:"active""inactive""pending""suspended"
Response
- string (date-time)
- null
{ "client_id": "string", "organization_name": "string", "contact_email": "string", "external_ref": "string", "sponsor_id": "string", "status": "active", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }