Skip to main content
PATCH
/
api
/
organizations
/
{organizationId}
/
ip-blocked-message
Update the IP blocked message
curl --request PATCH \
  --url https://your-instance.example.com/api/organizations/{organizationId}/ip-blocked-message \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>"
}
'
{
  "success": true,
  "data": {
    "ipBlockedMessage": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
string
required

Body

application/json
message
string
required

Response

IP blocked message updated

success
boolean
data
object