POST
/
v1
/
suppliers
/
accounts
curl --request POST \
  --url https://api.voltview.co.uk/v1/suppliers/accounts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "password": "<string>",
  "businessId": "<string>",
  "supplier": "<string>",
  "expiryDate": "2023-11-07T05:31:56Z"
}'
{
  "businessId": "<string>",
  "id": "<string>",
  "status": "PASSING"
}

Authorizations

Authorization
string
header
required

JWT token obtained from /v1/requestToken endpoint

Body

application/json

Response

200
application/json

Account created successfully

The response is of type object.