Individual talent pools containing providers with custom attributes.
A Talent Pool is a curated list of providers (e.g., "Tier 1 Cabling Techs"). Talent pools are organized within Talent Pool Groups.
Talent Pool Group (Container)
├── Talent Pool (Tier 1)
│ ├── Provider A
│ └── Provider B
├── Talent Pool (Tier 2)
│ └── Provider C
└── Talent Pool (General)
└── Provider DEach provider in a talent pool can have custom attributes (e.g., pay rate, priority level).
GET /talent-pools/{talent_pool_id}/providers/{provider_id}/attributes
Parameters:
limit - Number of results per pagesort_by - Field to sort bysort_direction - asc or descPOST /talent-pools/{talent_pool_id}/providers/{provider_id}/attributes
{
"attributes": [
{
"name": "pay_rate",
"value": "65.00"
},
{
"name": "priority",
"value": "high"
}
]
}PUT /talent-pools/{talent_pool_id}/providers/{provider_id}/attributes/{attribute_uuid}
{
"value": "75.00"
}PUT /talent-pools/{talent_pool_id}/providers/{provider_id}/attributes
{
"attributes": [
{ "id": "uuid-1", "value": "75.00" },
{ "id": "uuid-2", "value": "critical" }
]
}DELETE /talent-pools/{talent_pool_id}/providers/{provider_id}/attributes/{attribute_uuid}
Talent pools are typically created and managed in the Field Nation UI. The API is primarily used for managing provider attributes and automating pool membership.
Last updated on