curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/donor/view/{report_id}/{hysform_id}/{trashed} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "1"
}'
{
"message": "None trashed got to admin/show_all_donors/hysform_id"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The id of the report
The id of the form
The trashed status
Client ID
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/donor/view/{report_id}/{hysform_id}/{trashed} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"client_id": "1"
}'
{
"message": "None trashed got to admin/show_all_donors/hysform_id"
}