PATCH
/
personas
/
{id}
curl --request PATCH \
  --url https://api.opengiant.com/v1/personas/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "attributes": {}
}'
{
  "id": "<string>",
  "name": "<string>",
  "attributes": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

ID of the persona to update.

Body

application/json

Updated persona details.

The body is of type object.

Response

200
application/json

Persona updated successfully.

The response is of type object.