Appearance
Offers
On this page, you can see all endpoints related to the Affiliate's offers
Dataset
Field | Description |
---|---|
id | The unique identifier of the offer. |
name | The name of the offer. |
price | The price of the offer. |
quantity | The available stock of the offer. |
commission | The commission amount earned for promoting the offer. |
price_currency | The offer price currency. |
commission_currency | The commission currency. |
country_iso_code | The offer country ISO code 2. |
offer_page | The offer link page. |
referral_id | The referral id of offer. |
referral_link | The unique link to promote the offer. |
medias.banners | The offer banners. |
medias.videos | The offer videos. |
medias.thumbels | The offer thumbels. |
medias.resources | The offer resources. |
Get All offers
Retrieve a list of all offers.
Endpoint
/affiliate/offers
1
Method GET
Parameters
None.
Response
json
{
"status": "success",
"data": [
{
"id": "...",
"name": "...",
"price": "...",
"quantity": ...,
"commission": ...,
"price_currency": "...",
"commission_currency": "...",
"country_iso_code": "...",
"offer_page": "...",
"referral_id": "...",
"referral_link": "...",
"medias": {
"banners": {
"banner_1": "...",
...
},
"videos": {
"video_1": "...",
...
},
"thumbnails": {
"thumbnail_1": "...",
...
},
"resources": {
"resource_1": "...",
...
}
}
},
...
],
"meta": {
"pagination": {
...
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Show offer
Retrieve an offer.
Endpoint
/affiliate/offers/{id}
1
Method GET
Parameters
Name | Type | Description | Required |
---|---|---|---|
id | string | The unique identifier of the offer to retrieve. | Yes |
Response
json
{
"status": "success",
"data": {
"id": "...",
"name": "...",
"price": "...",
"quantity": ...,
"commission": ...,
"price_currency": "...",
"commission_currency": "...",
"country_iso_code": "...",
"offer_page": "...",
"referral_id": "...",
"referral_link": "...",
"medias": {
"banners": {
"banner_1": "...",
...
},
"videos": {
"video_1": "...",
...
},
"thumbnails": {
"thumbnail_1": "...",
...
},
"resources": {
"resource_1": "...",
...
}
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34