Handles the process of moving multiple entities to a different program,
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."
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Data required to move multiple entities
The body is of type object
.
Entities moved successfully
The response is of type object
.
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."
}