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
Entities moved successfully
"Entities successfully moved."
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."
}