cURL
curl --request POST \ --url https://api.treasuryprime.com/account_number_reservation \ --header 'Authorization: Basic <encoded-value>' \ --header 'Content-Type: application/json' \ --data ' { "account_product_id": "<string>" } '
{ "account_number": "<string>", "account_product_id": "<string>", "id": "<string>" }
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Basic <encoded-value>
<encoded-value>
username:password
The account-number-reservation to create
The account-number-reservation created
Was this page helpful?