Job Router Operations - Get In Queue Position
取得作業的位置詳細數據。
GET {endpoint}/routing/jobs/{jobId}/position?api-version=2023-11-01
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
endpoint
|
path | True |
string |
通訊資源的 URI |
job
|
path | True |
string |
作業的標識碼。 |
api-version
|
query | True |
string |
要用於這項作業的 API 版本。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
要求已成功。 |
|
Other Status Codes |
未預期的錯誤回應。 標題 x-ms-error-code: string |
安全性
AadOauth2Auth
Azure Active Directory OAuth2 流程
類型:
oauth2
Flow:
accessCode
授權 URL:
https://login.microsoftonline.com/common/oauth2/authorize
權杖 URL:
https://login.microsoftonline.com/common/oauth2/token
範圍
名稱 | Description |
---|---|
https://communication.azure.com/.default |
範例
Gets a job's position details
範例要求
GET https://contoso.westus.communications.azure.com/routing/jobs/8780b28c-7079-4de1-9143-4d369289e958/position?api-version=2023-11-01
範例回覆
{
"jobId": "383541b3-5637-4af6-8aac-3391da8a578a",
"position": 1,
"queueId": "MainQueue",
"queueLength": 3,
"estimatedWaitTimeMinutes": 4
}
定義
名稱 | Description |
---|---|
Azure. |
error 物件。 |
Azure. |
包含錯誤詳細數據的回應。 |
Azure. |
物件,包含有關錯誤的更特定資訊。 根據Microsoft一個 API 指導方針 - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses。 |
Router |
職位和預估的作業等候時間。 |
Azure.Core.Foundations.Error
error 物件。
名稱 | 類型 | Description |
---|---|---|
code |
string |
其中一組伺服器定義的錯誤碼。 |
details |
導致此錯誤之特定錯誤的詳細數據陣列。 |
|
innererror |
物件,包含與目前對象有關錯誤更具體的資訊。 |
|
message |
string |
錯誤的人類可讀取表示法。 |
target |
string |
錯誤的目標。 |
Azure.Core.Foundations.ErrorResponse
包含錯誤詳細數據的回應。
名稱 | 類型 | Description |
---|---|---|
error |
error 物件。 |
Azure.Core.Foundations.InnerError
物件,包含有關錯誤的更特定資訊。 根據Microsoft一個 API 指導方針 - https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses。
名稱 | 類型 | Description |
---|---|---|
code |
string |
其中一組伺服器定義的錯誤碼。 |
innererror |
內部錯誤。 |
RouterJobPositionDetails
職位和預估的作業等候時間。
名稱 | 類型 | Description |
---|---|---|
estimatedWaitTimeMinutes |
number |
估計作業的等候時間會四捨五入到最接近的分鐘。 |
jobId |
string |
這些詳細數據的作業標識碼。 |
position |
integer |
該佇列中有問題的作業位置。 |
queueId |
string |
此作業加入佇列的識別碼。 |
queueLength |
integer |
佇列的長度:加入佇列的作業總數。 |