PUT
/
admin
/
api
/
v1
/
SubClient
/
{id}
Update Registered company info
curl --request PUT \
  --url https://dashboard-api.meshconnect.com/admin/api/v1/SubClient/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "businessLegalName": "<string>",
  "displayName": "<string>",
  "callbackUrls": [
    "<string>"
  ]
}'
{
  "status": "ok",
  "message": "<string>",
  "displayMessage": "<string>",
  "errorHash": "<string>",
  "errorType": "<string>",
  "errorData": "<any>",
  "content": {
    "businessLegalName": "<string>",
    "displayName": "<string>",
    "callbackUrls": [
      "<string>"
    ],
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "logoUrl": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Authorization header using the Bearer scheme. Example: "Authorization: Bearer {Value}"

Path Parameters

id
string<uuid>
required

Body

application/json

The body is of type object.

Response

200 - application/json

OK

The response is of type object.