Get List of Label Sets in a Project
cURL
curl --location --request POST 'https://datasaur.ai/graphql' \
--header 'Authorization: Bearer access_token' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "query GetCabinet($projectId: ID!, $role: Role!) { getCabinet(projectId: $projectId, role: $role) { id } }",
"variables": {
"projectId": "project-id",
"role": "REVIEWER"
}
}'Response
Last updated