Skip to main content
PUT
/
entities
/
{entity}
Update an entity
curl --request PUT \
  --url https://api.staging-2tid4c.ezyshield.com.au/management/v1/entities/{entity} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

entity
string<uuid>
required

The entity ID

Body

application/json
name
string
required

The name of the entity.

Maximum string length: 255

Response

EntityResource

data
EntityResource · object
required