# PUT /api/subscriptions/{id} > Subscriptions - Update a Subscription - **Endpoint:** `PUT /api/subscriptions/{id}` - **Group:** Subscriptions - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/SubscriptionsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Subscription unique ID | | `title` | String | no | Optional Title | | `type` | String | no | Optional Type | | `subscription_client_id` | Number | no | Optional Client ID | | `subscription_bill_date` | String | no | Optional Bill date | | `tax_id` | Number | no | Optional Tax ID | | `tax_id2` | Number | no | Optional Second Tax ID | | `company_id` | Number | no | Optional Company ID | | `repeat_every` | Number | no | Optional Repeat every | | `repeat_type` | String | no | Optional Repeat type | | `subscription_note` | String | no | Optional Note | | `labels` | String | no | Optional Labels | ## Request example ```bash curl -X PUT "https://yoursite.com/index.php/api/subscriptions/123" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "field": "value" }' ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/subscriptions/update-subscription/