Skip to main content
POST
/
billing
/
invoice
Get invoice URL
curl --request POST \
  --url https://nimbussuite.com/api/v1/billing/invoice \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "invoiceId": "<string>"
}
'
{
  "url": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
invoiceId
string
required

Response

Invoice URL retrieved

url
string