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

# Update offers the status

| HTTP method | Endpoint                            |
| ----------- | ----------------------------------- |
| **PATCH**   | **/v1/batches/offers/{offer\_ids}** |

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

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

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

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

| Field  | Type    | Description                                                                        |
| ------ | ------- | ---------------------------------------------------------------------------------- |
| id     | integer | The unique id for the offer.                                                       |
| status | string  | The modified status of the offer.  Possible Values:  active·paused·pending·deleted |

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

**Request PATCH** <https://{networkname}.api.offerslook.com/v1/batches/offers/14354,14356,14359?status=paused>

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

```
    {
      "code": 0,
      "message": "Success",
      "data": {
        "offer": [
          {
            "offer_id": 14354,
            "status": "paused"
          },
          {
            "offer_id": 14356,
            "status": "paused"
          },
          {
            "offer_id": 14359,
            "status": "paused"
          }
        ]
      }
    }
```
