POST
/
v1
/
supplierIntegration
/
accounts
curl --request POST \
  --url https://api.voltview.co.uk/v1/supplierIntegration/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
email
string
required

Email for utility supplier account

password
string
required

Password for utility supplier account

businessId
string
required

Business identifier

supplier
string
required

Type of utility supplier

expiryDate
string

Optional expiration date for account credentials

Response

200
application/json
Account created successfully
businessId
string

Business identifier

id
string

Account identifier

status
enum<string>

Account connection status

Available options:
PASSING,
FAILING