Skip to main content
POST
/
v1
/
merchant
/
customer
/
bill
Bill Customer For Merchant
curl --request POST \
  --url https://api.peere.network/v1/merchant/customer/bill \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityId": "<string>",
  "agreementPhrases": [
    "<string>"
  ],
  "amount": 123,
  "currency": "<string>",
  "description": "<string>"
}
'
[
  {
    "statusCode": 201,
    "success": true,
    "message": "Customer billed successfully",
    "reference": "<string>",
    "phrase": "<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
agreementPhrases
string[]
required
amount
number
required
currency
string
required
description
string
required

Response

Customer billed successfully

statusCode
integer
Example:

201

success
boolean
Example:

true

message
string
Example:

"Customer billed successfully"

reference
string
phrase
string
entityId
string