Partners

Get Partner Product List

GET
Get Partner Product List

Query parameters

pageintegerOptional
A page number within the paginated result set.
page_sizeintegerOptional
Number of results to return per page.
searchstringOptional
A search term.

Response

This endpoint returns an object
count
integerOptional
next
stringOptional
previous
stringOptional
results
list of objectsOptional
GET
1curl /v2/partners/products/ \
2 -H "Authorization: Bearer <token>"
200
Retrieved
1{
2 "count": 123,
3 "next": "http://api.example.org/accounts/?page=4",
4 "previous": "http://api.example.org/accounts/?page=2",
5 "results": [
6 {
7 "key": "key",
8 "product_type": "product",
9 "image": "image",
10 "buy_button_text": "buy_button_text",
11 "buy_button_link": "buy_button_link",
12 "locked": true,
13 "featured": true,
14 "category": "credit_services",
15 "description": {
16 "full_name": "full_name"
17 },
18 "options": [
19 {}
20 ],
21 "free_trial_enabled": true,
22 "free_trial_duration": 1
23 }
24 ]
25}