Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 15 KB

File metadata and controls

13 lines (10 loc) · 15 KB

ConnectorsMeta

Fields

Field Type Required Description Example
provider String ✔️ The provider key hibob
providerName String ✔️ The provider human-readable label Hibob
category ConnectorsMetaCategory ✔️ The provider service category hris
active JsonNullable<Boolean> Whether this provider has been enabled on the integrations page for the current project true
models Map<String, Object> ✔️ N/A {
"employees": {
"create": {
"apiPath": "/unified/hris/employees/:id",
"input": {
"defaultFields": [
{
"name": "first_name",
"type": "string"
}
]
},
"output": {
"defaultFields": [
{
"name": "id",
"type": "string"
}
]
}
}
},
"time_off": {
"get": {
"apiPath": "/unified/hris/employees/:id/time_off/:id",
"output": {
"defaultFields": [
{
"name": "id",
"type": "string"
}
]
}
}
}
}
resources JsonNullable<Resources> Resources for this provider, such as image assets {
"images": {
"logo_url": "https://app.stackone.com/assets/logos/hibob.png",
"original_logo_horizontal_url": "https://app.stackone.com/assets/logos/original/hibob_horizontal.png"
}
}