Logo
Account Management API Documentation

Add Account

POST {{url}}/v1/accounts

Creates a new account record. The account record will be automatically assigned an account UUID. The new account UUID will be returned by the server in the response.

 

Body PARAM

Key Datatype Required Description 



HEADERS

Key Datatype Required Description 




RESPONSES

status Created

{ "accountID": "123", "first_name": "John", "last_name": "Doe", "email": "john.doe@example.com" }



Curl
curl -X POST 'https://b749daa2-85c8-4e1e-8ccf-129deea832d5.mock.pstmn.io/v1/accounts' -d '{"first_name":"John","last_name":"Doe","email":"john.doe@example.com"}'

ENDPOINTS