PUT
/
admin
/
entities
/
move
curl --request PUT \
  --url https://api.helpyousponsor.com/v1/admin/entities/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "entity_ids": [
    "1,2"
  ],
  "client_id": "<string>",
  "new_program": "<string>"
}'
{
  "message": "Entities successfully moved."
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Data required to move multiple entities

The body is of type object.

Response

200
application/json

Entities moved successfully

The response is of type object.