POST
/
csv_process
/
{program_id}
/
relationships
curl --request POST \
  --url https://api.helpyousponsor.com/v1/csv_process/{program_id}/relationships \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "client_id": 1,
  "user_id": 1,
  "program_id": 1
}'
{
  "message": "Your import has been queued. You will receive an email when the job has finished."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

program_id
integer
required

ID of the program

Body

application/json
client_id
integer

Client ID

Example:

1

user_id
integer

User ID

Example:

1

program_id
integer

Program ID

Example:

1

Response

200
application/json
Successful operation
message
string
Example:

"Your import has been queued. You will receive an email when the job has finished."