IntegrationsMicrosoft teamsActions
Get Microsoft Teams team operation
Get status for an async team operation.
teams.operations.get · Microsoft Teams · v1
Details
Scopes
Team.ReadBasic.All
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
team_id | string | Yes | minLength 1; maxLength 128 |
operation_id | string | Yes | minLength 1; maxLength 128 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
team_id | string | Yes | — |
status | string | Yes | — |
operation_type | string | No | — |
target_resource_id | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"team_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"operation_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
}
},
"required": [
"team_id",
"operation_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"team_id": {
"type": "string"
},
"status": {
"type": "string"
},
"operation_type": {
"type": "string"
},
"target_resource_id": {
"type": "string"
}
},
"required": [
"id",
"team_id",
"status"
]
}