Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Lai, Weijian <laiweijian4@huawei.com> Co-committed-by: Lai, Weijian <laiweijian4@huawei.com>
13 KiB
Querying the Labeling Team List
Function
This API is used to query the labeling team list.
Debugging
You can debug this API through automatic authentication in or use the SDK sample code generated by API Explorer.
URI
GET /v2/{project_id}/workforces
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
project_id |
Yes |
String |
Project ID. For details about how to obtain a project ID, see Obtaining a Project ID and Name. |
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
limit |
No |
Integer |
Maximum number of records returned on each page. The value ranges from 1 to 100. The default value is 10. |
offset |
No |
Integer |
Start page of the paging list. The default value is 0. |
order |
No |
String |
Sorting sequence of the query. Options:
|
search_content |
No |
String |
Fuzzy search keyword. By default, this parameter is left blank. |
sort_by |
No |
String |
Sorting mode of the query. Options:
|
workforce_task_id |
No |
String |
ID of a team labeling task. |
Request Parameters
None
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
total_number |
Integer |
Total number of labeling teams. |
workforces |
Array of Workforce objects |
Labeling team list queried by page. |
Parameter |
Type |
Description |
---|---|---|
create_time |
Long |
Time when a labeling team is created. |
description |
String |
Description of a labeling team. |
update_time |
Long |
Time when a labeling team is updated. |
worker_count |
Integer |
Total number of labeling team members. |
workforce_id |
String |
ID of a labeling team. |
workforce_name |
String |
Name of a labeling team. |
workspace_id |
String |
Workspace ID. If no workspace is created, the default value is 0. If a workspace is created and used, use the actual value. |
Example Requests
Querying the Labeling Team List
GET https://{endpoint}/v2/{project_id}/workforces
Example Responses
Status code: 200
OK
{ "total_number" : 2, "workforces" : [ { "workforce_id" : "ZUH8gqkjuaib8pxkDdz", "workforce_name" : "team-123", "description" : "my team", "worker_count" : 0, "create_time" : 1606354772548, "update_time" : 1606354772548 }, { "workforce_id" : "3Ry04NsqvEybuWYLDvC", "workforce_name" : "team-170a", "description" : "", "worker_count" : 1, "create_time" : 1604644946891, "update_time" : 1606238678626 } ] }
Status Codes
Status Code |
Description |
---|---|
200 |
OK |
401 |
Unauthorized |
403 |
Forbidden |
404 |
Not Found |
Error Codes
See Error Codes.