Trackier v1
Search
⌃K

Add a new Affiliate

HTTP method
EndPoint
POST
/affiliate

Request body parameters

Note

If there are custom fields set in the network then all the required custom fields must be sent in the request
Example Custom fields See - Affiliate Custom Fields Dictionary
{
"success": true,
"data": {
"fields": [
{
"label": "FB Page URL",
"type": "text",
"name": "fb_page_url",
"required": true,
"id": "5918b7cdb6920d1ccb35b2f5"
},
{
"label": "Page Screenshot",
"type": "file",
"name": "page_screenshot",
"required": true,
"id": "5918b93fb6920d1d4a4dcd73"
}
]
}
}
curl -X POST -H "X-Api-Key: {key}" -H "Content-Type: application/json" -H "Cache-Control: no-cache" -H "Postman-Token: cc5d7610-80aa-8f1b-983d-fc5712fcfb53" -d '{
"name": "Awesome User",
"email": "[email protected]",
"password": "somethingCool!!",
"phone": "9998887776",
"custom_fields": {
"fb_page_url": "http://facebook.com/path",
"page_screenshot": "http://demo.trackier.com/assets/img/logo.png"
}
}' "http://api.trackier.com/affiliate"
Here the format of custom_fields object is:
{
"custom_fields": {
"fields.0.name": "value",
"fields.1.name": "value" // for a field.type: "file" => Send a link to the corresponding IMAGE/PDF file
}
}
Field
Type
Description
Nullable
name
string
Name of the affiliate
No
email
string
Email of the affiliate
No
password
string
Password of the affiliate
No
phone
string
Phone Number of the affiliate
Yes
country
string
Country (Two letter country code)
Yes

Response body parameters

{
"success": true,
"data": {
"user": {
"org_id": "string",
"username": "Awesome User",
"name": "Awesome User",
"email": "[email protected]",
"password": "da39a3ee5e6b4b0d3255bfef95601890afd80709",
"phone": "9998887776",
"country": "IN",
"currency": "USD",
"type": "publisher",
"login": null,
"_id": "5821f9e81d41c86b2e664df3",
"live": false,
"created": "2016-11-08",
"modified": null,
"meta": []
},
"message": "Publisher Added!!"
}
}