> For the complete documentation index, see [llms.txt](https://offerslook-api.gitbook.io/api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://offerslook-api.gitbook.io/api-documentation/networkapi/advertisers/get_all_information_about_a_specific_advertiser.md).

# Get all information about a specific advertiser

| HTTP method | Endpoint                                 |
| ----------- | ---------------------------------------- |
| **GET**     | **/v1/advertisers/{advertiser\_id}/all** |

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

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

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

|                       | Field                     | Type    | Description                                              |   |
| --------------------- | ------------------------- | ------- | -------------------------------------------------------- | - |
| advertiser            |                           |         |                                                          |   |
|                       | id                        | integer | A string that uniquely identifies this advertiser.       |   |
|                       | first\_name               | string  | The first\_name of the this Advertiser.                  |   |
|                       | last\_name                | string  | The last\_name of the this Advertiser.                   |   |
|                       | email                     | string  | The email of the this Advertiser.                        |   |
|                       | company                   | string  | The company of the this Advertiser.                      |   |
|                       | country                   | string  | The country of the Advertiser's physical address.        |   |
|                       | status                    | string  | Advertiser status.                                       |   |
|                       | instant\_message\_account | string  | Instant messaging account.                               |   |
|                       | instant\_message\_type    | integer | types of instant messaging.                              |   |
|                       | manager\_id               | integer | Account Manager ID.                                      |   |
|                       | phone                     | string  | The phone number of the Advertiser.                      |   |
|                       | website                   | string  |                                                          |   |
|                       | security\_mode            | integer | selection to activate security code.   0：close ;  1：open |   |
|                       | security\_code            | string  | conversion security code                                 |   |
|                       | create\_time              | integer | Create time                                              |   |
| advertiser\_whitelist |                           |         |                                                          |   |
|                       | ip\_address               | array   | ip address                                               |   |
|                       | ip                        | string  | ip                                                       |   |
|                       | ip\_range                 | array   | ip range                                                 |   |
|                       | start                     | string  | start ip                                                 |   |
|                       | end                       | string  | end ip                                                   |   |

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

**Request GET** <https://{networkname}.api.offerslook.com/v1/advertisers/4865/all>

**Request GET** <http://{networkname}.api.offerslook.com/v1/advertisers/4865/all>

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

```
    {
      "code": 0,
      "message": "Success",
      "data": {
        "advertiser": {
          "id": 4865,
          "email": "test@test.com",
          "first_name": "advertiser",
          "last_name": "test",
          "country": "Asia/Pacific Region",
          "status": "active",
          "website": "http://www.baidu.com",
          "create_time": 1458648895,
          "company": "UC Union",
          "phone": "11122223333",
          "manager_id": 7,
          "instant_message_type": 3,
          "instant_message_account": "test@facebook.com",
          "security_mode": 1,
          "security_code": "1965c04d1fb142c584564a5066699fb0"
        },
        "advertiser_whitelist": {
          "is_open": 1,
          "ip_address": [
            {
              "ip": "192.168.21.23"
            },
            {
              "ip": "192.168.11.100"
            }
          ],
          "ip_range": [
            {
              "start": "192.168.2.1",
              "end": "192.168.2.222"
            },
            {
              "start": "192.168.5.110",
              "end": "192.168.5.222"
            }
          ]
        }
      }
    }
```
