View Smart Link Items

GET /backend/open-api/v1/affiliates/smart-links/{smart-link-group-id}/items/{smart_link_items_id}

View contents of a selected Smart Link Group.

Headers

Name Value
Authorization Bearer <token>

Path parameters

Name Type Description Required
smart-link-group-id Integer ID of a Smart Link Group. ☑️
smart_link_items_id Integer ID of a Smart Link Item.

Response

{
    "data": [
        {
            "iso_code": "AI",
            "default": true,
            "is_active": true,
            "name": "First SL",
            "url": "<https://example.com/backend/api/v3/offer/472?aff_sub=123&aff_sub2=test&affiliate_id=227&url_id=415>",
            "id": 38
        },
        {
            "iso_code": "US",
            "default": false,
            "is_active": true,
            "name": "Second SL",
            "url": "<https://example.com/backend/api/v3/offer/472?aff_sub4=4444&affiliate_id=227&url_id=421>",
            "id": 39
        }
    ],
    "total": 2,
    "per_page": 200,
    "page": 1,
    "pages": 1,
    "source": [
        {
            "id": 68,
            "name": "New for API Manual"
        }
    ]
}

Create Smart Link Items

POST /backend/open-api/v1/affiliates/smart-links/{smart-link-group-id}/items

Create a Smart Link Item.

Headers

Name Value
Content-Type application/json
Authorization Bearer <token>

Path parameters

Name Type Description Required
smart-link-group-id Integer ID of a Smart Link Group. ☑️