Skip to main content
GET
/
userPosition
/
labels
/
groupers
Get position segment labels
curl --request GET \
  --url https://api.projectcor.com/v1/userPosition/labels/groupers \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://developers.projectcor.com/llms.txt

Use this file to discover all available pages before exploring further.

These labels are not user positions (e.g., “Backend Developer”, “Analista de datos”). They are the classification criteria used to group positions (e.g., by seniority, area, or department). To retrieve actual user positions grouped by category, use GET /userPosition/getPositionsOnly.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

type
enum<string>
required

Defines whether labels are retrieved for positions or categories. Must be 'c' for categories or 'p' for positions

Available options:
c,
p
Example:

"p"

Response

List of segment labels

data
object[]