Crashes
Update Crash Group Annotation
PUT https://api.appelium.com/v1/crashGroups/:crashGroupId
Updates the annotation for a crash group. Annotations are limited to 1,000 characters.
Parameters
| NAME | PLACEMENT | TYPE | DESCRIPTION |
|---|---|---|---|
X-Appelium-TokenRequired |
Header | string |
API token generated in Dashboard |
crashGroupIdRequired |
Path | int |
ID of the crash group to update |
annotation |
Body | string |
Annotation for the crash group. Maximum 1,000 characters. Pass null or omit to clear the annotation. |
Sample request payload:
{
"annotation": "Tracked in MOB-1234. The fix is under review."
}
200: OK
The updated crash group is returned in the response body.
401: Unauthorized
{
"id": "388677B7-B016-4A6C-A8AE-887B3814114C",
"httpStatus": 401,
"title": "Unauthorized",
"detail": "Invalid or missing X-Appelium-Token header"
}
404: Not Found
Returned when the crash group does not exist.