PUT
/
v1
/
suppliers
/
accounts
/
{id}
curl --request PUT \
  --url https://api.voltview.co.uk/v1/suppliers/accounts/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "jsmith@example.com",
  "password": "<string>"
}'
{
  "status": "PASSING",
  "id": "<string>",
  "businessId": "<string>",
  "reason": "<string>"
}

Authorizations

Authorization
string
header
required

JWT token obtained from /v1/requestToken endpoint

Path Parameters

id
string
required

Account ID

Body

application/json

Response

200
application/json

Account details retrieved successfully

The response is of type object.