POST
/
merchant
/
update
curl --request POST \
  --url https://api.unibee.top/merchant/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "address": "<string>",
  "companyLogo": "<string>",
  "companyName": "<string>",
  "companyRegistryCode": "<string>",
  "companyVatNumber": "<string>",
  "countryCode": "<string>",
  "countryName": "<string>",
  "email": "<string>",
  "host": "<string>",
  "phone": "<string>",
  "timeZone": "<string>"
}'
{
  "code": 123,
  "data": {
    "merchant": {
      "address": "<string>",
      "companyLogo": "<string>",
      "companyName": "<string>",
      "companyRegistryCode": "<string>",
      "companyVatNumber": "<string>",
      "countryCode": "<string>",
      "countryName": "<string>",
      "createTime": 123,
      "email": "<string>",
      "homeUrl": "<string>",
      "host": "<string>",
      "id": 123,
      "location": "<string>",
      "name": "<string>",
      "phone": "<string>",
      "timeZone": "<string>",
      "type": 123,
      "userId": 123
    }
  },
  "message": "<string>",
  "redirect": "<string>",
  "requestId": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200 - application/json

The response is of type object.