Update a specific RetrospectiveProcessGroup Step by id
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "retrospective_process_group_steps",
"attributes": {
"position": 123
}
}
}
'{
"data": {
"id": "<string>",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "<string>",
"retrospective_step_id": "<string>",
"position": 123
}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
retrospective_process_group_step updated
Show child attributes
Unique ID of the retrospective_process_group_step
retrospective_process_group_steps Was this page helpful?
curl --request PUT \
--url https://api.rootly.com/v1/retrospective_process_group_steps/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/vnd.api+json' \
--data '
{
"data": {
"type": "retrospective_process_group_steps",
"attributes": {
"position": 123
}
}
}
'{
"data": {
"id": "<string>",
"type": "retrospective_process_group_steps",
"attributes": {
"retrospective_process_group_id": "<string>",
"retrospective_step_id": "<string>",
"position": 123
}
}
}