Skip to main content
PATCH
/
v1
/
provider
/
merchant
Update Merchant For Provider
curl --request PATCH \
  --url https://api.peere.network/v1/provider/merchant \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "entityId": "<string>",
  "name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "address": "<string>",
  "website": "<string>",
  "description": "<string>",
  "icon": "<string>"
}
'
{
  "statusCode": 200,
  "success": true,
  "message": "Merchant updated successfully",
  "data": {}
}

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
name
string
email
string
phone
string
address
string
website
string
description
string
icon
string

Response

Merchant updated successfully

statusCode
integer
Example:

200

success
boolean
Example:

true

message
string
Example:

"Merchant updated successfully"

data
object