# Get information about a specific offer’s postback url

| HTTP method | Endpoint                                 |
| ----------- | ---------------------------------------- |
| **GET**     | **/aff/v1/offers/{offer\_id}/postbacks** |

### Path parameters <a href="#path-parameters-6" id="path-parameters-6"></a>

| Parameter | Description                  |
| --------- | ---------------------------- |
| offer\_id | The unique id for the offer. |

***Note: this offer must be approved by the audit.***

## Response body parameters <a href="#response-body-parameters-6" id="response-body-parameters-6"></a>

| Field         | Type    | Description                                                              |
| ------------- | ------- | ------------------------------------------------------------------------ |
| id            | integer | Affiliate postback id.                                                   |
| offer\_id     | integer | Offer id. ***Offer\_id=0 indicates the Postback is a Global Postback.*** |
| affiliate\_id | integer | Affiliaite id                                                            |
| event\_id     | integer | Event id.                                                                |
| code          | string  | Code.                                                                    |
| status        | string  | Status of Postback.  pending;  approved;  rejected                       |
| type          | string  | Type of code.   1:Image Pixel;   2:Postback URL;   3:HTML Pixel          |
| create\_time  | integer | Create time.                                                             |
| update\_time  | integer | Update time.                                                             |

## Example request <a href="#example-request-6" id="example-request-6"></a>

**Request GET** <https://{networkname}.api.offerslook.com/aff/v1/offers/102/postbacks>

**Request GET** <http://{networkname}.api.offerslook.com/aff/v1/offers/102/postbacks>

## Example response <a href="#example-response-6" id="example-response-6"></a>

```
    {
      "code": 0,
      "message": "Success",
      "data": {
        "postback": [
          {
            "id": 210,
            "offer_id": 102,
            "affiliate_id": 161,
            "event_id": 1,
            "type": 2,
            "code": "https://www.offerslook.com/signup.html",
            "status": "approved",
            "create_time": 1478031171,
            "update_time": 1478231171
          },
          {
            "id": 211,
            "offer_id": 102,
            "affiliate_id": 161,
            "event_id": 2,
            "type": 1,
            "code": "<img src="https: //www.offerslook.com">",
            "status": "pending",
            "create_time": 1478031196,
            "update_time": 1478031196
          }
        ]
      }
    }
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://offerslook-api.gitbook.io/api-documentation/affiliate_api/offers/get_information_about_a_specific_offers_postback_u.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
