> 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/update-advertisers-the-status.md).

# Update advertisers the status

| HTTP method | Endpoint                                      |
| ----------- | --------------------------------------------- |
| **PATCH**   | **/v1/batches/advertisers/{advertiser\_ids}** |

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

| Parameter      | Description                                                                            |
| -------------- | -------------------------------------------------------------------------------------- |
| advertiser\_id | The unique id for the advertiser.                                                      |
| status         | The modified status of the advertiser.  Possible Values: active·paused·pending·deleted |

**Note:The limit of bulk adjustment is 100 advertisers.**

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

| Field  | Type    | Description                                                                            |
| ------ | ------- | -------------------------------------------------------------------------------------- |
| id     | integer | A string that uniquely identifies this advertiser.                                     |
| status | string  | The modified status of the advertiser.  Possible Values: active·paused·pending·deleted |

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

**Request PATCH** <https://{networkname}.api.offerslook.com/v1/batches/advertisers/4,5,6?status=blocked>

**Request PATCH** <http://{networkname}.api.offerslook.com/v1/batches/advertisers/4,5,6?status=blocked>

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

```
    {
      "code": 0,
      "message": "Success",
      "data": {
        "advertiser": [
          {
            "advertiser_id": 4,
            "status": "blocked"
          },
          {
            "advertiser_id": 5,
            "status": "blocked"
          },
          {
            "advertiser_id": 6,
            "status": "blocked"
          }
        ]
      }
    }
```
