# Enable/Disable Offer

When you disable an offer, it becomes invisible to everyone else.

## Request

```markdown
{
    "offerId":"OFFER_ID",
    "enable": false
}
```

| Field   | Data Type | Required | Description                         |
| ------- | --------- | -------- | ----------------------------------- |
| offerId | String    | True     | The ID if the offer to be booked    |
| enable  | String    | True     | True to enable and False to disable |

## Response

```markdown
{
    "code": "P00",
    "message": "Success"
}
```
