Ping Identity
mail_update_thread_labels
Add or remove labels on a thread (e.g. 'starred', 'important', 'archived', or custom labels). Thread labels are separate from message labels. Labels must be 1-100 chars from [a-zA-Z0-9_-:.]. Max 20 labels per call. Removing a label deletes user data — use with care.
Remote loomal/identity
Remote (network-hosted)
Other tools also called mail_update_thread_labels?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"threadId": {
"type": "string",
"maxLength": 500,
"description": "The threadId to update"
},
"addLabels": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100,
"minLength": 1
},
"maxItems": 20,
"description": "Labels to add to the thread"
},
"removeLabels": {
"type": "array",
"items": {
"type": "string",
"maxLength": 100,
"minLength": 1
},
"maxItems": 20,
"description": "Labels to remove from the thread"
}
}
}