POST
/
admin
/
sponsorships
curl --request POST \
  --url https://api.helpyousponsor.com/v1/admin/sponsorships \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "donors": 1,
  "id": 1,
  "sp_amount": "100",
  "client_id": "1",
  "entity_id": 1,
  "entities": 1,
  "method": "3",
  "frequency": "1",
  "next": "2023-11-25"
}'
{
  "message": "Sponsorship relationship successfully created."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Data required to create a new sponsorship
donors
integer

Donor ID

Example:

1

id
integer

Donor ID

Example:

1

sp_amount
string

Sponsorship amount

Example:

"100"

client_id
string
Example:

"1"

entity_id
integer

Entity ID

Example:

1

entities
integer

Entity ID

Example:

1

method
string

Payment method

Example:

"3"

frequency
string

Frequency of payment

Example:

"1"

next
string
Example:

"2023-11-25"

Response

200
application/json
Sponsorship relationship successfully created
message
string
Example:

"Sponsorship relationship successfully created."