curl -X POST "https://api.chariow.com/v1/affiliates/invitations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"emails": ["[email protected]", "[email protected]"]
}'
{
"message": "2 invitations sent successfully",
"data": {
"invitations": [
{
"id": "affinv_abc123xyz",
"email": "[email protected]",
"status": "pending",
"expires_at": "2026-02-10T10:30:00+00:00",
"created_at": "2026-01-11T10:30:00+00:00"
},
{
"id": "affinv_def456uvw",
"email": "[email protected]",
"status": "pending",
"expires_at": "2026-02-10T10:30:00+00:00",
"created_at": "2026-01-11T10:30:00+00:00"
}
],
"skipped": {
"already_affiliate": [],
"already_invited": []
}
},
"errors": []
}
Send invitation emails to potential affiliates
curl -X POST "https://api.chariow.com/v1/affiliates/invitations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"emails": ["[email protected]", "[email protected]"]
}'
{
"message": "2 invitations sent successfully",
"data": {
"invitations": [
{
"id": "affinv_abc123xyz",
"email": "[email protected]",
"status": "pending",
"expires_at": "2026-02-10T10:30:00+00:00",
"created_at": "2026-01-11T10:30:00+00:00"
},
{
"id": "affinv_def456uvw",
"email": "[email protected]",
"status": "pending",
"expires_at": "2026-02-10T10:30:00+00:00",
"created_at": "2026-01-11T10:30:00+00:00"
}
],
"skipped": {
"already_affiliate": [],
"already_invited": []
}
},
"errors": []
}
["[email protected]", "[email protected]"]Show properties
curl -X POST "https://api.chariow.com/v1/affiliates/invitations" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"emails": ["[email protected]", "[email protected]"]
}'
{
"message": "2 invitations sent successfully",
"data": {
"invitations": [
{
"id": "affinv_abc123xyz",
"email": "[email protected]",
"status": "pending",
"expires_at": "2026-02-10T10:30:00+00:00",
"created_at": "2026-01-11T10:30:00+00:00"
},
{
"id": "affinv_def456uvw",
"email": "[email protected]",
"status": "pending",
"expires_at": "2026-02-10T10:30:00+00:00",
"created_at": "2026-01-11T10:30:00+00:00"
}
],
"skipped": {
"already_affiliate": [],
"already_invited": []
}
},
"errors": []
}
Was this page helpful?