curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/progress_report \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"date_from": "2022-01-01",
"date_to": "2022-12-31",
"hysform_id": "1",
"program_id": 1,
"pageIndex": 1,
"pageSize": 10,
"type": "donor",
"client_id": "1"
}'
{
"fields": [
{}
],
"organization": {},
"forms": [
{}
],
"total": 100,
"profile_fields": [
{}
],
"date_from": "2022-01-01",
"date_to": "2022-12-31"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/progress_report \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"date_from": "2022-01-01",
"date_to": "2022-12-31",
"hysform_id": "1",
"program_id": 1,
"pageIndex": 1,
"pageSize": 10,
"type": "donor",
"client_id": "1"
}'
{
"fields": [
{}
],
"organization": {},
"forms": [
{}
],
"total": 100,
"profile_fields": [
{}
],
"date_from": "2022-01-01",
"date_to": "2022-12-31"
}