Skip to main content

SdkOfferWall - GET Offer Link

Written by GoKart Support

Endpoint

api/v1/offer-wall/offer-link

This endpoint returns the tracking link for a specific offer view. The link is dynamically generated to include parameters unique to the user’s click and the selected offer, ensuring accurate tracking and attribution.

Use this endpoint when you need to:

  • Retrieve the click URL that directs the user to the advertiser’s landing page.

  • Connect the offer detail view to the actual engagement click, maintaining a consistent attribution trail.

Key Details

  • Returns the general response schema here

  • For details on how to handle new fields in our API schema, please see our SDK API Schema Disclaimer.

  • Required Parameters: listed in table below

Field Name

Type

Description

Examples

viewId

string/text

A required unique identifier used to retrieve the specific offer link associated with a view.

“3fa85f64-5717-4562-b3fc-2c963f66afa6”


Response

it returns the general response schema, more details below

Field Name

Type

Description

Examples

url

string/text

Dynamically generated offer link that contains parameters specific to the user's click and offer, such as the country code and transaction ID.

Request:

GET https://api.[YOUR_TENANT].getgokart.ai/api/v1/offer-wall/offer-link?offerId=6bd57ffe-3eda-404c-9c7c-1bd466a18886&viewId=024bc172-f8ed-4ee4-868e-b40bff7f5fcd

Response:

{
"data": {
"url": "https://impact.io/c/3536079/1564299/18205?subid1=5468c28c-4825-406a-a623-6dfd07284376"
},
"responseId": "ec4b0694-86a3-4b3b-b75d-fc28769d354f",
"isSuccessful": true,
"responseTitle": "Success",
"responseType": "Success",
"messages": []
}
Did this answer your question?