Skip to main content
POST
/
v1
/
merchant
/
billing
/
intent
Send Billing Intent For Merchant
curl --request POST \
  --url https://api.peere.network/v1/merchant/billing/intent \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityId": "<string>",
  "lookupPhrases": [
    "<string>"
  ],
  "currency": "<string>",
  "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
entityId
string
required
lookupPhrases
string[]
required
currency
string
required
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