This endpoint enables you to update details such as the name, status, and favorite status of an existing group using its unique ID. For a live view and to test this API interactively, visit the API Playground.
Endpoint
- Method: PUT
-
URL:
https://api2.requestly.io/v1/groups/{id}
Path Parameters
| Parameter | Type | Description | Required |
|---|---|---|---|
id | String | The unique identifier of the group to update. | Yes |
Body Parameters
| Parameter | Type | Description | Required | Default Value |
|---|---|---|---|---|
name | String | The new name of the group. | Yes | |
status | String | The updated status of the group. | No | Active |
isFavourite | Boolean | Pins the group (true or false). | No | false |
cURL Request
Sample Response
Response Codes
| Status Code | Description |
|---|---|
| 200 | Group updated successfully. |
| 400 | The provided group ID is invalid. |
| 401 | Unauthorized action. |
| 404 | The specified group does not exist. |
| 500 | An error occurred on the server. |

