Skip to main content
POST
/
v1
/
billing
/
intent
Send Billing Intent
curl --request POST \
  --url https://api.peere.network/v1/billing/intent \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "lookupPhrases": [
    "<string>"
  ],
  "currency": "NGN",
  "description": "<string>"
}
'
{
  "statusCode": 200,
  "success": true,
  "message": "Billing intent sent successfully",
  "lookupPhrase": "<string>",
  "entityId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
lookupPhrases
string[]
required
currency
string
required
Example:

"NGN"

description
string
required

Response

Billing intent sent successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string
Example:

"Billing intent sent successfully"

lookupPhrase
string
entityId
string