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>",
  "countryCode": "<string>",
  "countryName": "<string>",
  "email": "<string>",
  "host": "<string>",
  "phone": "<string>",
  "timeZone": "<string>"
}'
{
  "code": 123,
  "data": {
    "merchant": {
      "address": "<string>",
      "businessNum": "<string>",
      "companyLogo": "<string>",
      "companyName": "<string>",
      "countryCode": "<string>",
      "countryName": "<string>",
      "createTime": 123,
      "email": "<string>",
      "homeUrl": "<string>",
      "host": "<string>",
      "id": 123,
      "idcard": "<string>",
      "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
address
string

address

company_logo

companyName
string

company_name

countryCode
string

Country Code

countryName
string

Country Name

email
string

email

host
string

User Portal Host

phone
string

phone

timeZone
string

User TimeZone

Response

200 - application/json
code
integer
data
object
message
string
redirect
string
requestId
string