curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/program/form/donor \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "1",
"donor_form": "1",
"client_id": "1"
}
'{
"message": "Successfully Added Donor To Program"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Data needed to add a donor to a program
Successfully added donor to program
"Successfully Added Donor To Program"
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/program/form/donor \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"id": "1",
"donor_form": "1",
"client_id": "1"
}
'{
"message": "Successfully Added Donor To Program"
}