跳到主要内容

Update account information

PUT 

https://api.one.blendvision.com/bv/account/v1/accounts/info

Modifies the details of a specific account using the provided access token.


Required field(s):

  • first_name
  • last_name

  • Returns a 404/NotFound error if the requested resource is not found.
  • Returns a 400/BadRequest error if the request body is invalid.

Request

Body

required
    first_name Required. The first name of account (string)required
    last_name Required. The last name of account (string)required
    nickname string

    Optional. The nickname of account.

Responses

A successful response.

Schema

    object

Authorization: authorization

name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
curl -L -X PUT 'https://api.one.blendvision.com/bv/account/v1/accounts/info' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
-d '{
"first_name": "test",
"last_name": "test",
"nickname": "test"
}'
Request Collapse all
Base URL
https://api.one.blendvision.com
Auth
Body required
{
"first_name": "test",
"last_name": "test",
"nickname": "test"
}
ResponseClear

Click the Send API Request button above and see the response here!