@bubblelab/bubble-core 0.1.247 → 0.1.249
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bubble-bundle.d.ts +13 -13
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts +2243 -74
- package/dist/bubbles/service-bubble/ashby/ashby.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.js +411 -24
- package/dist/bubbles/service-bubble/ashby/ashby.js.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts +2567 -92
- package/dist/bubbles/service-bubble/ashby/ashby.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js +603 -0
- package/dist/bubbles/service-bubble/ashby/ashby.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/firecrawl.d.ts +8 -8
- package/dist/bubbles/service-bubble/posthog/posthog.d.ts +4 -4
- package/dist/bubbles/service-bubble/posthog/posthog.schema.d.ts +4 -4
- package/dist/bubbles.json +2722 -285
- package/package.json +2 -2
package/dist/bubbles.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": "2.0.0",
|
|
3
|
-
"generatedAt": "2026-03-
|
|
3
|
+
"generatedAt": "2026-03-23T07:00:58.506Z",
|
|
4
4
|
"totalCount": 76,
|
|
5
5
|
"bubbles": [
|
|
6
6
|
{
|
|
@@ -59819,6 +59819,591 @@
|
|
|
59819
59819
|
"operation"
|
|
59820
59820
|
],
|
|
59821
59821
|
"additionalProperties": false
|
|
59822
|
+
},
|
|
59823
|
+
{
|
|
59824
|
+
"type": "object",
|
|
59825
|
+
"properties": {
|
|
59826
|
+
"operation": {
|
|
59827
|
+
"type": "string",
|
|
59828
|
+
"enum": [
|
|
59829
|
+
"list_jobs"
|
|
59830
|
+
],
|
|
59831
|
+
"description": "List all jobs"
|
|
59832
|
+
},
|
|
59833
|
+
"limit": {
|
|
59834
|
+
"type": "number",
|
|
59835
|
+
"minimum": 1,
|
|
59836
|
+
"maximum": 100,
|
|
59837
|
+
"default": 100,
|
|
59838
|
+
"description": "Maximum number of jobs to return (1-100)"
|
|
59839
|
+
},
|
|
59840
|
+
"cursor": {
|
|
59841
|
+
"type": "string",
|
|
59842
|
+
"description": "Pagination cursor for fetching subsequent pages"
|
|
59843
|
+
},
|
|
59844
|
+
"status": {
|
|
59845
|
+
"type": "string",
|
|
59846
|
+
"enum": [
|
|
59847
|
+
"Open",
|
|
59848
|
+
"Closed",
|
|
59849
|
+
"Draft",
|
|
59850
|
+
"Archived"
|
|
59851
|
+
],
|
|
59852
|
+
"description": "Filter jobs by status"
|
|
59853
|
+
},
|
|
59854
|
+
"credentials": {
|
|
59855
|
+
"type": "object",
|
|
59856
|
+
"additionalProperties": {
|
|
59857
|
+
"type": "string"
|
|
59858
|
+
},
|
|
59859
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
59860
|
+
}
|
|
59861
|
+
},
|
|
59862
|
+
"required": [
|
|
59863
|
+
"operation"
|
|
59864
|
+
],
|
|
59865
|
+
"additionalProperties": false
|
|
59866
|
+
},
|
|
59867
|
+
{
|
|
59868
|
+
"type": "object",
|
|
59869
|
+
"properties": {
|
|
59870
|
+
"operation": {
|
|
59871
|
+
"type": "string",
|
|
59872
|
+
"enum": [
|
|
59873
|
+
"get_job"
|
|
59874
|
+
],
|
|
59875
|
+
"description": "Get detailed information about a specific job"
|
|
59876
|
+
},
|
|
59877
|
+
"job_id": {
|
|
59878
|
+
"type": "string",
|
|
59879
|
+
"minLength": 1,
|
|
59880
|
+
"description": "UUID of the job to retrieve"
|
|
59881
|
+
},
|
|
59882
|
+
"credentials": {
|
|
59883
|
+
"type": "object",
|
|
59884
|
+
"additionalProperties": {
|
|
59885
|
+
"type": "string"
|
|
59886
|
+
},
|
|
59887
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
59888
|
+
}
|
|
59889
|
+
},
|
|
59890
|
+
"required": [
|
|
59891
|
+
"operation",
|
|
59892
|
+
"job_id"
|
|
59893
|
+
],
|
|
59894
|
+
"additionalProperties": false
|
|
59895
|
+
},
|
|
59896
|
+
{
|
|
59897
|
+
"type": "object",
|
|
59898
|
+
"properties": {
|
|
59899
|
+
"operation": {
|
|
59900
|
+
"type": "string",
|
|
59901
|
+
"enum": [
|
|
59902
|
+
"list_applications"
|
|
59903
|
+
],
|
|
59904
|
+
"description": "List applications with optional filtering"
|
|
59905
|
+
},
|
|
59906
|
+
"candidate_id": {
|
|
59907
|
+
"type": "string",
|
|
59908
|
+
"description": "Filter by candidate ID"
|
|
59909
|
+
},
|
|
59910
|
+
"job_id": {
|
|
59911
|
+
"type": "string",
|
|
59912
|
+
"description": "Filter by job ID"
|
|
59913
|
+
},
|
|
59914
|
+
"status": {
|
|
59915
|
+
"type": "string",
|
|
59916
|
+
"enum": [
|
|
59917
|
+
"Active",
|
|
59918
|
+
"Hired",
|
|
59919
|
+
"Archived",
|
|
59920
|
+
"Lead"
|
|
59921
|
+
],
|
|
59922
|
+
"description": "Filter by application status"
|
|
59923
|
+
},
|
|
59924
|
+
"limit": {
|
|
59925
|
+
"type": "number",
|
|
59926
|
+
"minimum": 1,
|
|
59927
|
+
"maximum": 100,
|
|
59928
|
+
"default": 100,
|
|
59929
|
+
"description": "Maximum number of applications to return (1-100)"
|
|
59930
|
+
},
|
|
59931
|
+
"cursor": {
|
|
59932
|
+
"type": "string",
|
|
59933
|
+
"description": "Pagination cursor for fetching subsequent pages"
|
|
59934
|
+
},
|
|
59935
|
+
"created_after": {
|
|
59936
|
+
"type": "number",
|
|
59937
|
+
"description": "Unix timestamp in milliseconds — only return applications created after this time"
|
|
59938
|
+
},
|
|
59939
|
+
"credentials": {
|
|
59940
|
+
"type": "object",
|
|
59941
|
+
"additionalProperties": {
|
|
59942
|
+
"type": "string"
|
|
59943
|
+
},
|
|
59944
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
59945
|
+
}
|
|
59946
|
+
},
|
|
59947
|
+
"required": [
|
|
59948
|
+
"operation"
|
|
59949
|
+
],
|
|
59950
|
+
"additionalProperties": false
|
|
59951
|
+
},
|
|
59952
|
+
{
|
|
59953
|
+
"type": "object",
|
|
59954
|
+
"properties": {
|
|
59955
|
+
"operation": {
|
|
59956
|
+
"type": "string",
|
|
59957
|
+
"enum": [
|
|
59958
|
+
"get_application"
|
|
59959
|
+
],
|
|
59960
|
+
"description": "Get detailed information about a specific application"
|
|
59961
|
+
},
|
|
59962
|
+
"application_id": {
|
|
59963
|
+
"type": "string",
|
|
59964
|
+
"minLength": 1,
|
|
59965
|
+
"description": "UUID of the application to retrieve"
|
|
59966
|
+
},
|
|
59967
|
+
"credentials": {
|
|
59968
|
+
"type": "object",
|
|
59969
|
+
"additionalProperties": {
|
|
59970
|
+
"type": "string"
|
|
59971
|
+
},
|
|
59972
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
59973
|
+
}
|
|
59974
|
+
},
|
|
59975
|
+
"required": [
|
|
59976
|
+
"operation",
|
|
59977
|
+
"application_id"
|
|
59978
|
+
],
|
|
59979
|
+
"additionalProperties": false
|
|
59980
|
+
},
|
|
59981
|
+
{
|
|
59982
|
+
"type": "object",
|
|
59983
|
+
"properties": {
|
|
59984
|
+
"operation": {
|
|
59985
|
+
"type": "string",
|
|
59986
|
+
"enum": [
|
|
59987
|
+
"create_application"
|
|
59988
|
+
],
|
|
59989
|
+
"description": "Submit a candidate to a job by creating an application"
|
|
59990
|
+
},
|
|
59991
|
+
"candidate_id": {
|
|
59992
|
+
"type": "string",
|
|
59993
|
+
"minLength": 1,
|
|
59994
|
+
"description": "UUID of the candidate"
|
|
59995
|
+
},
|
|
59996
|
+
"job_id": {
|
|
59997
|
+
"type": "string",
|
|
59998
|
+
"minLength": 1,
|
|
59999
|
+
"description": "UUID of the job to apply to"
|
|
60000
|
+
},
|
|
60001
|
+
"interview_stage_id": {
|
|
60002
|
+
"type": "string",
|
|
60003
|
+
"description": "Optional interview stage ID to start at"
|
|
60004
|
+
},
|
|
60005
|
+
"source_id": {
|
|
60006
|
+
"type": "string",
|
|
60007
|
+
"description": "Optional source ID to attribute the application to"
|
|
60008
|
+
},
|
|
60009
|
+
"credentials": {
|
|
60010
|
+
"type": "object",
|
|
60011
|
+
"additionalProperties": {
|
|
60012
|
+
"type": "string"
|
|
60013
|
+
},
|
|
60014
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60015
|
+
}
|
|
60016
|
+
},
|
|
60017
|
+
"required": [
|
|
60018
|
+
"operation",
|
|
60019
|
+
"candidate_id",
|
|
60020
|
+
"job_id"
|
|
60021
|
+
],
|
|
60022
|
+
"additionalProperties": false
|
|
60023
|
+
},
|
|
60024
|
+
{
|
|
60025
|
+
"type": "object",
|
|
60026
|
+
"properties": {
|
|
60027
|
+
"operation": {
|
|
60028
|
+
"type": "string",
|
|
60029
|
+
"enum": [
|
|
60030
|
+
"change_application_stage"
|
|
60031
|
+
],
|
|
60032
|
+
"description": "Move an application to a different interview stage"
|
|
60033
|
+
},
|
|
60034
|
+
"application_id": {
|
|
60035
|
+
"type": "string",
|
|
60036
|
+
"minLength": 1,
|
|
60037
|
+
"description": "UUID of the application"
|
|
60038
|
+
},
|
|
60039
|
+
"interview_stage_id": {
|
|
60040
|
+
"type": "string",
|
|
60041
|
+
"minLength": 1,
|
|
60042
|
+
"description": "UUID of the interview stage to move to"
|
|
60043
|
+
},
|
|
60044
|
+
"credentials": {
|
|
60045
|
+
"type": "object",
|
|
60046
|
+
"additionalProperties": {
|
|
60047
|
+
"type": "string"
|
|
60048
|
+
},
|
|
60049
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60050
|
+
}
|
|
60051
|
+
},
|
|
60052
|
+
"required": [
|
|
60053
|
+
"operation",
|
|
60054
|
+
"application_id",
|
|
60055
|
+
"interview_stage_id"
|
|
60056
|
+
],
|
|
60057
|
+
"additionalProperties": false
|
|
60058
|
+
},
|
|
60059
|
+
{
|
|
60060
|
+
"type": "object",
|
|
60061
|
+
"properties": {
|
|
60062
|
+
"operation": {
|
|
60063
|
+
"type": "string",
|
|
60064
|
+
"enum": [
|
|
60065
|
+
"update_candidate"
|
|
60066
|
+
],
|
|
60067
|
+
"description": "Update an existing candidate"
|
|
60068
|
+
},
|
|
60069
|
+
"candidate_id": {
|
|
60070
|
+
"type": "string",
|
|
60071
|
+
"minLength": 1,
|
|
60072
|
+
"description": "UUID of the candidate to update"
|
|
60073
|
+
},
|
|
60074
|
+
"name": {
|
|
60075
|
+
"type": "string",
|
|
60076
|
+
"description": "Updated candidate name"
|
|
60077
|
+
},
|
|
60078
|
+
"email": {
|
|
60079
|
+
"type": "string",
|
|
60080
|
+
"description": "Updated primary email"
|
|
60081
|
+
},
|
|
60082
|
+
"phone_number": {
|
|
60083
|
+
"type": "string",
|
|
60084
|
+
"description": "Updated phone number"
|
|
60085
|
+
},
|
|
60086
|
+
"linkedin_url": {
|
|
60087
|
+
"type": "string",
|
|
60088
|
+
"description": "Updated LinkedIn profile URL"
|
|
60089
|
+
},
|
|
60090
|
+
"github_url": {
|
|
60091
|
+
"type": "string",
|
|
60092
|
+
"description": "Updated GitHub profile URL"
|
|
60093
|
+
},
|
|
60094
|
+
"website": {
|
|
60095
|
+
"type": "string",
|
|
60096
|
+
"description": "Updated website URL"
|
|
60097
|
+
},
|
|
60098
|
+
"credentials": {
|
|
60099
|
+
"type": "object",
|
|
60100
|
+
"additionalProperties": {
|
|
60101
|
+
"type": "string"
|
|
60102
|
+
},
|
|
60103
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60104
|
+
}
|
|
60105
|
+
},
|
|
60106
|
+
"required": [
|
|
60107
|
+
"operation",
|
|
60108
|
+
"candidate_id"
|
|
60109
|
+
],
|
|
60110
|
+
"additionalProperties": false
|
|
60111
|
+
},
|
|
60112
|
+
{
|
|
60113
|
+
"type": "object",
|
|
60114
|
+
"properties": {
|
|
60115
|
+
"operation": {
|
|
60116
|
+
"type": "string",
|
|
60117
|
+
"enum": [
|
|
60118
|
+
"create_note"
|
|
60119
|
+
],
|
|
60120
|
+
"description": "Add a note to a candidate"
|
|
60121
|
+
},
|
|
60122
|
+
"candidate_id": {
|
|
60123
|
+
"type": "string",
|
|
60124
|
+
"minLength": 1,
|
|
60125
|
+
"description": "UUID of the candidate"
|
|
60126
|
+
},
|
|
60127
|
+
"content": {
|
|
60128
|
+
"type": "string",
|
|
60129
|
+
"minLength": 1,
|
|
60130
|
+
"description": "Note content (plain text or HTML)"
|
|
60131
|
+
},
|
|
60132
|
+
"credentials": {
|
|
60133
|
+
"type": "object",
|
|
60134
|
+
"additionalProperties": {
|
|
60135
|
+
"type": "string"
|
|
60136
|
+
},
|
|
60137
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60138
|
+
}
|
|
60139
|
+
},
|
|
60140
|
+
"required": [
|
|
60141
|
+
"operation",
|
|
60142
|
+
"candidate_id",
|
|
60143
|
+
"content"
|
|
60144
|
+
],
|
|
60145
|
+
"additionalProperties": false
|
|
60146
|
+
},
|
|
60147
|
+
{
|
|
60148
|
+
"type": "object",
|
|
60149
|
+
"properties": {
|
|
60150
|
+
"operation": {
|
|
60151
|
+
"type": "string",
|
|
60152
|
+
"enum": [
|
|
60153
|
+
"list_notes"
|
|
60154
|
+
],
|
|
60155
|
+
"description": "List notes for a candidate"
|
|
60156
|
+
},
|
|
60157
|
+
"candidate_id": {
|
|
60158
|
+
"type": "string",
|
|
60159
|
+
"minLength": 1,
|
|
60160
|
+
"description": "UUID of the candidate"
|
|
60161
|
+
},
|
|
60162
|
+
"credentials": {
|
|
60163
|
+
"type": "object",
|
|
60164
|
+
"additionalProperties": {
|
|
60165
|
+
"type": "string"
|
|
60166
|
+
},
|
|
60167
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60168
|
+
}
|
|
60169
|
+
},
|
|
60170
|
+
"required": [
|
|
60171
|
+
"operation",
|
|
60172
|
+
"candidate_id"
|
|
60173
|
+
],
|
|
60174
|
+
"additionalProperties": false
|
|
60175
|
+
},
|
|
60176
|
+
{
|
|
60177
|
+
"type": "object",
|
|
60178
|
+
"properties": {
|
|
60179
|
+
"operation": {
|
|
60180
|
+
"type": "string",
|
|
60181
|
+
"enum": [
|
|
60182
|
+
"list_sources"
|
|
60183
|
+
],
|
|
60184
|
+
"description": "List all candidate sources"
|
|
60185
|
+
},
|
|
60186
|
+
"credentials": {
|
|
60187
|
+
"type": "object",
|
|
60188
|
+
"additionalProperties": {
|
|
60189
|
+
"type": "string"
|
|
60190
|
+
},
|
|
60191
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60192
|
+
}
|
|
60193
|
+
},
|
|
60194
|
+
"required": [
|
|
60195
|
+
"operation"
|
|
60196
|
+
],
|
|
60197
|
+
"additionalProperties": false
|
|
60198
|
+
},
|
|
60199
|
+
{
|
|
60200
|
+
"type": "object",
|
|
60201
|
+
"properties": {
|
|
60202
|
+
"operation": {
|
|
60203
|
+
"type": "string",
|
|
60204
|
+
"enum": [
|
|
60205
|
+
"list_interview_stages"
|
|
60206
|
+
],
|
|
60207
|
+
"description": "List interview stages for a job"
|
|
60208
|
+
},
|
|
60209
|
+
"job_id": {
|
|
60210
|
+
"type": "string",
|
|
60211
|
+
"minLength": 1,
|
|
60212
|
+
"description": "UUID of the job to get interview stages for"
|
|
60213
|
+
},
|
|
60214
|
+
"credentials": {
|
|
60215
|
+
"type": "object",
|
|
60216
|
+
"additionalProperties": {
|
|
60217
|
+
"type": "string"
|
|
60218
|
+
},
|
|
60219
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60220
|
+
}
|
|
60221
|
+
},
|
|
60222
|
+
"required": [
|
|
60223
|
+
"operation",
|
|
60224
|
+
"job_id"
|
|
60225
|
+
],
|
|
60226
|
+
"additionalProperties": false
|
|
60227
|
+
},
|
|
60228
|
+
{
|
|
60229
|
+
"type": "object",
|
|
60230
|
+
"properties": {
|
|
60231
|
+
"operation": {
|
|
60232
|
+
"type": "string",
|
|
60233
|
+
"enum": [
|
|
60234
|
+
"get_file_url"
|
|
60235
|
+
],
|
|
60236
|
+
"description": "Get a download URL for a file (e.g., resume)"
|
|
60237
|
+
},
|
|
60238
|
+
"file_handle": {
|
|
60239
|
+
"type": "string",
|
|
60240
|
+
"minLength": 1,
|
|
60241
|
+
"description": "File handle from a candidate record (e.g., resumeFileHandle.handle)"
|
|
60242
|
+
},
|
|
60243
|
+
"credentials": {
|
|
60244
|
+
"type": "object",
|
|
60245
|
+
"additionalProperties": {
|
|
60246
|
+
"type": "string"
|
|
60247
|
+
},
|
|
60248
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60249
|
+
}
|
|
60250
|
+
},
|
|
60251
|
+
"required": [
|
|
60252
|
+
"operation",
|
|
60253
|
+
"file_handle"
|
|
60254
|
+
],
|
|
60255
|
+
"additionalProperties": false
|
|
60256
|
+
},
|
|
60257
|
+
{
|
|
60258
|
+
"type": "object",
|
|
60259
|
+
"properties": {
|
|
60260
|
+
"operation": {
|
|
60261
|
+
"type": "string",
|
|
60262
|
+
"enum": [
|
|
60263
|
+
"list_projects"
|
|
60264
|
+
],
|
|
60265
|
+
"description": "List all projects"
|
|
60266
|
+
},
|
|
60267
|
+
"credentials": {
|
|
60268
|
+
"type": "object",
|
|
60269
|
+
"additionalProperties": {
|
|
60270
|
+
"type": "string"
|
|
60271
|
+
},
|
|
60272
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60273
|
+
}
|
|
60274
|
+
},
|
|
60275
|
+
"required": [
|
|
60276
|
+
"operation"
|
|
60277
|
+
],
|
|
60278
|
+
"additionalProperties": false
|
|
60279
|
+
},
|
|
60280
|
+
{
|
|
60281
|
+
"type": "object",
|
|
60282
|
+
"properties": {
|
|
60283
|
+
"operation": {
|
|
60284
|
+
"type": "string",
|
|
60285
|
+
"enum": [
|
|
60286
|
+
"get_project"
|
|
60287
|
+
],
|
|
60288
|
+
"description": "Get project details"
|
|
60289
|
+
},
|
|
60290
|
+
"project_id": {
|
|
60291
|
+
"type": "string",
|
|
60292
|
+
"minLength": 1,
|
|
60293
|
+
"description": "UUID of the project"
|
|
60294
|
+
},
|
|
60295
|
+
"credentials": {
|
|
60296
|
+
"type": "object",
|
|
60297
|
+
"additionalProperties": {
|
|
60298
|
+
"type": "string"
|
|
60299
|
+
},
|
|
60300
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60301
|
+
}
|
|
60302
|
+
},
|
|
60303
|
+
"required": [
|
|
60304
|
+
"operation",
|
|
60305
|
+
"project_id"
|
|
60306
|
+
],
|
|
60307
|
+
"additionalProperties": false
|
|
60308
|
+
},
|
|
60309
|
+
{
|
|
60310
|
+
"type": "object",
|
|
60311
|
+
"properties": {
|
|
60312
|
+
"operation": {
|
|
60313
|
+
"type": "string",
|
|
60314
|
+
"enum": [
|
|
60315
|
+
"list_candidate_projects"
|
|
60316
|
+
],
|
|
60317
|
+
"description": "List all projects a candidate belongs to"
|
|
60318
|
+
},
|
|
60319
|
+
"candidate_id": {
|
|
60320
|
+
"type": "string",
|
|
60321
|
+
"minLength": 1,
|
|
60322
|
+
"description": "UUID of the candidate"
|
|
60323
|
+
},
|
|
60324
|
+
"credentials": {
|
|
60325
|
+
"type": "object",
|
|
60326
|
+
"additionalProperties": {
|
|
60327
|
+
"type": "string"
|
|
60328
|
+
},
|
|
60329
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60330
|
+
}
|
|
60331
|
+
},
|
|
60332
|
+
"required": [
|
|
60333
|
+
"operation",
|
|
60334
|
+
"candidate_id"
|
|
60335
|
+
],
|
|
60336
|
+
"additionalProperties": false
|
|
60337
|
+
},
|
|
60338
|
+
{
|
|
60339
|
+
"type": "object",
|
|
60340
|
+
"properties": {
|
|
60341
|
+
"operation": {
|
|
60342
|
+
"type": "string",
|
|
60343
|
+
"enum": [
|
|
60344
|
+
"add_candidate_to_project"
|
|
60345
|
+
],
|
|
60346
|
+
"description": "Add a candidate to a project"
|
|
60347
|
+
},
|
|
60348
|
+
"candidate_id": {
|
|
60349
|
+
"type": "string",
|
|
60350
|
+
"minLength": 1,
|
|
60351
|
+
"description": "UUID of the candidate"
|
|
60352
|
+
},
|
|
60353
|
+
"project_id": {
|
|
60354
|
+
"type": "string",
|
|
60355
|
+
"minLength": 1,
|
|
60356
|
+
"description": "UUID of the project"
|
|
60357
|
+
},
|
|
60358
|
+
"credentials": {
|
|
60359
|
+
"type": "object",
|
|
60360
|
+
"additionalProperties": {
|
|
60361
|
+
"type": "string"
|
|
60362
|
+
},
|
|
60363
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60364
|
+
}
|
|
60365
|
+
},
|
|
60366
|
+
"required": [
|
|
60367
|
+
"operation",
|
|
60368
|
+
"candidate_id",
|
|
60369
|
+
"project_id"
|
|
60370
|
+
],
|
|
60371
|
+
"additionalProperties": false
|
|
60372
|
+
},
|
|
60373
|
+
{
|
|
60374
|
+
"type": "object",
|
|
60375
|
+
"properties": {
|
|
60376
|
+
"operation": {
|
|
60377
|
+
"type": "string",
|
|
60378
|
+
"enum": [
|
|
60379
|
+
"remove_candidate_from_project"
|
|
60380
|
+
],
|
|
60381
|
+
"description": "Remove a candidate from a project"
|
|
60382
|
+
},
|
|
60383
|
+
"candidate_id": {
|
|
60384
|
+
"type": "string",
|
|
60385
|
+
"minLength": 1,
|
|
60386
|
+
"description": "UUID of the candidate"
|
|
60387
|
+
},
|
|
60388
|
+
"project_id": {
|
|
60389
|
+
"type": "string",
|
|
60390
|
+
"minLength": 1,
|
|
60391
|
+
"description": "UUID of the project"
|
|
60392
|
+
},
|
|
60393
|
+
"credentials": {
|
|
60394
|
+
"type": "object",
|
|
60395
|
+
"additionalProperties": {
|
|
60396
|
+
"type": "string"
|
|
60397
|
+
},
|
|
60398
|
+
"description": "Object mapping credential types to values (injected at runtime)"
|
|
60399
|
+
}
|
|
60400
|
+
},
|
|
60401
|
+
"required": [
|
|
60402
|
+
"operation",
|
|
60403
|
+
"candidate_id",
|
|
60404
|
+
"project_id"
|
|
60405
|
+
],
|
|
60406
|
+
"additionalProperties": false
|
|
59822
60407
|
}
|
|
59823
60408
|
]
|
|
59824
60409
|
},
|
|
@@ -60139,7 +60724,20 @@
|
|
|
60139
60724
|
"description": "Custom field information"
|
|
60140
60725
|
},
|
|
60141
60726
|
"description": "Custom field values"
|
|
60142
|
-
}
|
|
60727
|
+
},
|
|
60728
|
+
"profileUrl": {
|
|
60729
|
+
"type": "string",
|
|
60730
|
+
"nullable": true,
|
|
60731
|
+
"description": "URL to the candidate profile in Ashby"
|
|
60732
|
+
},
|
|
60733
|
+
"source": {
|
|
60734
|
+
"nullable": true,
|
|
60735
|
+
"description": "Candidate source"
|
|
60736
|
+
},
|
|
60737
|
+
"creditedToUser": {
|
|
60738
|
+
"nullable": true,
|
|
60739
|
+
"description": "User credited for the candidate"
|
|
60740
|
+
}
|
|
60143
60741
|
},
|
|
60144
60742
|
"required": [
|
|
60145
60743
|
"id",
|
|
@@ -60283,27 +60881,1846 @@
|
|
|
60283
60881
|
"value": {
|
|
60284
60882
|
"description": "Custom field value"
|
|
60285
60883
|
},
|
|
60286
|
-
"isPrivate": {
|
|
60287
|
-
"type": "boolean",
|
|
60288
|
-
"description": "Whether the field is private"
|
|
60884
|
+
"isPrivate": {
|
|
60885
|
+
"type": "boolean",
|
|
60886
|
+
"description": "Whether the field is private"
|
|
60887
|
+
}
|
|
60888
|
+
},
|
|
60889
|
+
"required": [
|
|
60890
|
+
"id",
|
|
60891
|
+
"title"
|
|
60892
|
+
],
|
|
60893
|
+
"additionalProperties": false,
|
|
60894
|
+
"description": "Custom field information"
|
|
60895
|
+
},
|
|
60896
|
+
"description": "Custom field values"
|
|
60897
|
+
}
|
|
60898
|
+
},
|
|
60899
|
+
"required": [
|
|
60900
|
+
"id",
|
|
60901
|
+
"name"
|
|
60902
|
+
],
|
|
60903
|
+
"additionalProperties": false,
|
|
60904
|
+
"description": "Candidate details"
|
|
60905
|
+
},
|
|
60906
|
+
"error": {
|
|
60907
|
+
"type": "string",
|
|
60908
|
+
"description": "Error message if operation failed"
|
|
60909
|
+
}
|
|
60910
|
+
},
|
|
60911
|
+
"required": [
|
|
60912
|
+
"operation",
|
|
60913
|
+
"success",
|
|
60914
|
+
"error"
|
|
60915
|
+
],
|
|
60916
|
+
"additionalProperties": false
|
|
60917
|
+
},
|
|
60918
|
+
{
|
|
60919
|
+
"type": "object",
|
|
60920
|
+
"properties": {
|
|
60921
|
+
"operation": {
|
|
60922
|
+
"type": "string",
|
|
60923
|
+
"enum": [
|
|
60924
|
+
"create_candidate"
|
|
60925
|
+
],
|
|
60926
|
+
"description": "Create candidate operation"
|
|
60927
|
+
},
|
|
60928
|
+
"success": {
|
|
60929
|
+
"type": "boolean",
|
|
60930
|
+
"description": "Whether the operation was successful"
|
|
60931
|
+
},
|
|
60932
|
+
"candidate": {
|
|
60933
|
+
"type": "object",
|
|
60934
|
+
"properties": {
|
|
60935
|
+
"id": {
|
|
60936
|
+
"type": "string",
|
|
60937
|
+
"description": "Unique candidate identifier (UUID)"
|
|
60938
|
+
},
|
|
60939
|
+
"createdAt": {
|
|
60940
|
+
"type": "string",
|
|
60941
|
+
"description": "ISO 8601 creation timestamp"
|
|
60942
|
+
},
|
|
60943
|
+
"updatedAt": {
|
|
60944
|
+
"type": "string",
|
|
60945
|
+
"description": "ISO 8601 update timestamp"
|
|
60946
|
+
},
|
|
60947
|
+
"name": {
|
|
60948
|
+
"type": "string",
|
|
60949
|
+
"description": "Full name of the candidate"
|
|
60950
|
+
},
|
|
60951
|
+
"primaryEmailAddress": {
|
|
60952
|
+
"type": "object",
|
|
60953
|
+
"properties": {
|
|
60954
|
+
"value": {
|
|
60955
|
+
"type": "string",
|
|
60956
|
+
"description": "Email address value"
|
|
60957
|
+
},
|
|
60958
|
+
"type": {
|
|
60959
|
+
"type": "string",
|
|
60960
|
+
"enum": [
|
|
60961
|
+
"Personal",
|
|
60962
|
+
"Work",
|
|
60963
|
+
"Other"
|
|
60964
|
+
],
|
|
60965
|
+
"description": "Type of email"
|
|
60966
|
+
},
|
|
60967
|
+
"isPrimary": {
|
|
60968
|
+
"type": "boolean",
|
|
60969
|
+
"description": "Whether this is the primary email"
|
|
60970
|
+
}
|
|
60971
|
+
},
|
|
60972
|
+
"required": [
|
|
60973
|
+
"value",
|
|
60974
|
+
"type",
|
|
60975
|
+
"isPrimary"
|
|
60976
|
+
],
|
|
60977
|
+
"additionalProperties": false,
|
|
60978
|
+
"description": "Primary email address",
|
|
60979
|
+
"nullable": true
|
|
60980
|
+
},
|
|
60981
|
+
"primaryPhoneNumber": {
|
|
60982
|
+
"type": "object",
|
|
60983
|
+
"properties": {
|
|
60984
|
+
"value": {
|
|
60985
|
+
"type": "string",
|
|
60986
|
+
"description": "Phone number value"
|
|
60987
|
+
},
|
|
60988
|
+
"type": {
|
|
60989
|
+
"type": "string",
|
|
60990
|
+
"enum": [
|
|
60991
|
+
"Personal",
|
|
60992
|
+
"Work",
|
|
60993
|
+
"Other"
|
|
60994
|
+
],
|
|
60995
|
+
"description": "Type of phone"
|
|
60996
|
+
},
|
|
60997
|
+
"isPrimary": {
|
|
60998
|
+
"type": "boolean",
|
|
60999
|
+
"description": "Whether this is the primary phone"
|
|
61000
|
+
}
|
|
61001
|
+
},
|
|
61002
|
+
"required": [
|
|
61003
|
+
"value",
|
|
61004
|
+
"type",
|
|
61005
|
+
"isPrimary"
|
|
61006
|
+
],
|
|
61007
|
+
"additionalProperties": false,
|
|
61008
|
+
"description": "Primary phone number",
|
|
61009
|
+
"nullable": true
|
|
61010
|
+
},
|
|
61011
|
+
"customFields": {
|
|
61012
|
+
"type": "array",
|
|
61013
|
+
"items": {
|
|
61014
|
+
"type": "object",
|
|
61015
|
+
"properties": {
|
|
61016
|
+
"id": {
|
|
61017
|
+
"type": "string",
|
|
61018
|
+
"description": "Custom field ID"
|
|
61019
|
+
},
|
|
61020
|
+
"title": {
|
|
61021
|
+
"type": "string",
|
|
61022
|
+
"description": "Custom field title"
|
|
61023
|
+
},
|
|
61024
|
+
"value": {
|
|
61025
|
+
"description": "Custom field value"
|
|
61026
|
+
},
|
|
61027
|
+
"isPrivate": {
|
|
61028
|
+
"type": "boolean",
|
|
61029
|
+
"description": "Whether the field is private"
|
|
61030
|
+
}
|
|
61031
|
+
},
|
|
61032
|
+
"required": [
|
|
61033
|
+
"id",
|
|
61034
|
+
"title"
|
|
61035
|
+
],
|
|
61036
|
+
"additionalProperties": false,
|
|
61037
|
+
"description": "Custom field information"
|
|
61038
|
+
},
|
|
61039
|
+
"description": "Custom field values"
|
|
61040
|
+
}
|
|
61041
|
+
},
|
|
61042
|
+
"required": [
|
|
61043
|
+
"id",
|
|
61044
|
+
"name"
|
|
61045
|
+
],
|
|
61046
|
+
"additionalProperties": false,
|
|
61047
|
+
"description": "Created candidate details (or existing candidate if duplicate was found)"
|
|
61048
|
+
},
|
|
61049
|
+
"duplicate": {
|
|
61050
|
+
"type": "boolean",
|
|
61051
|
+
"description": "True if a candidate with the same LinkedIn profile already existed and was returned instead of creating a new one"
|
|
61052
|
+
},
|
|
61053
|
+
"error": {
|
|
61054
|
+
"type": "string",
|
|
61055
|
+
"description": "Error message if operation failed"
|
|
61056
|
+
}
|
|
61057
|
+
},
|
|
61058
|
+
"required": [
|
|
61059
|
+
"operation",
|
|
61060
|
+
"success",
|
|
61061
|
+
"error"
|
|
61062
|
+
],
|
|
61063
|
+
"additionalProperties": false
|
|
61064
|
+
},
|
|
61065
|
+
{
|
|
61066
|
+
"type": "object",
|
|
61067
|
+
"properties": {
|
|
61068
|
+
"operation": {
|
|
61069
|
+
"type": "string",
|
|
61070
|
+
"enum": [
|
|
61071
|
+
"search_candidates"
|
|
61072
|
+
],
|
|
61073
|
+
"description": "Search candidates operation"
|
|
61074
|
+
},
|
|
61075
|
+
"success": {
|
|
61076
|
+
"type": "boolean",
|
|
61077
|
+
"description": "Whether the operation was successful"
|
|
61078
|
+
},
|
|
61079
|
+
"candidates": {
|
|
61080
|
+
"type": "array",
|
|
61081
|
+
"items": {
|
|
61082
|
+
"type": "object",
|
|
61083
|
+
"properties": {
|
|
61084
|
+
"id": {
|
|
61085
|
+
"type": "string",
|
|
61086
|
+
"description": "Unique candidate identifier (UUID)"
|
|
61087
|
+
},
|
|
61088
|
+
"createdAt": {
|
|
61089
|
+
"type": "string",
|
|
61090
|
+
"description": "ISO 8601 creation timestamp"
|
|
61091
|
+
},
|
|
61092
|
+
"updatedAt": {
|
|
61093
|
+
"type": "string",
|
|
61094
|
+
"description": "ISO 8601 update timestamp"
|
|
61095
|
+
},
|
|
61096
|
+
"name": {
|
|
61097
|
+
"type": "string",
|
|
61098
|
+
"description": "Full name of the candidate"
|
|
61099
|
+
},
|
|
61100
|
+
"primaryEmailAddress": {
|
|
61101
|
+
"type": "object",
|
|
61102
|
+
"properties": {
|
|
61103
|
+
"value": {
|
|
61104
|
+
"type": "string",
|
|
61105
|
+
"description": "Email address value"
|
|
61106
|
+
},
|
|
61107
|
+
"type": {
|
|
61108
|
+
"type": "string",
|
|
61109
|
+
"enum": [
|
|
61110
|
+
"Personal",
|
|
61111
|
+
"Work",
|
|
61112
|
+
"Other"
|
|
61113
|
+
],
|
|
61114
|
+
"description": "Type of email"
|
|
61115
|
+
},
|
|
61116
|
+
"isPrimary": {
|
|
61117
|
+
"type": "boolean",
|
|
61118
|
+
"description": "Whether this is the primary email"
|
|
61119
|
+
}
|
|
61120
|
+
},
|
|
61121
|
+
"required": [
|
|
61122
|
+
"value",
|
|
61123
|
+
"type",
|
|
61124
|
+
"isPrimary"
|
|
61125
|
+
],
|
|
61126
|
+
"additionalProperties": false,
|
|
61127
|
+
"description": "Primary email address",
|
|
61128
|
+
"nullable": true
|
|
61129
|
+
},
|
|
61130
|
+
"primaryPhoneNumber": {
|
|
61131
|
+
"type": "object",
|
|
61132
|
+
"properties": {
|
|
61133
|
+
"value": {
|
|
61134
|
+
"type": "string",
|
|
61135
|
+
"description": "Phone number value"
|
|
61136
|
+
},
|
|
61137
|
+
"type": {
|
|
61138
|
+
"type": "string",
|
|
61139
|
+
"enum": [
|
|
61140
|
+
"Personal",
|
|
61141
|
+
"Work",
|
|
61142
|
+
"Other"
|
|
61143
|
+
],
|
|
61144
|
+
"description": "Type of phone"
|
|
61145
|
+
},
|
|
61146
|
+
"isPrimary": {
|
|
61147
|
+
"type": "boolean",
|
|
61148
|
+
"description": "Whether this is the primary phone"
|
|
61149
|
+
}
|
|
61150
|
+
},
|
|
61151
|
+
"required": [
|
|
61152
|
+
"value",
|
|
61153
|
+
"type",
|
|
61154
|
+
"isPrimary"
|
|
61155
|
+
],
|
|
61156
|
+
"additionalProperties": false,
|
|
61157
|
+
"description": "Primary phone number",
|
|
61158
|
+
"nullable": true
|
|
61159
|
+
},
|
|
61160
|
+
"customFields": {
|
|
61161
|
+
"type": "array",
|
|
61162
|
+
"items": {
|
|
61163
|
+
"type": "object",
|
|
61164
|
+
"properties": {
|
|
61165
|
+
"id": {
|
|
61166
|
+
"type": "string",
|
|
61167
|
+
"description": "Custom field ID"
|
|
61168
|
+
},
|
|
61169
|
+
"title": {
|
|
61170
|
+
"type": "string",
|
|
61171
|
+
"description": "Custom field title"
|
|
61172
|
+
},
|
|
61173
|
+
"value": {
|
|
61174
|
+
"description": "Custom field value"
|
|
61175
|
+
},
|
|
61176
|
+
"isPrivate": {
|
|
61177
|
+
"type": "boolean",
|
|
61178
|
+
"description": "Whether the field is private"
|
|
61179
|
+
}
|
|
61180
|
+
},
|
|
61181
|
+
"required": [
|
|
61182
|
+
"id",
|
|
61183
|
+
"title"
|
|
61184
|
+
],
|
|
61185
|
+
"additionalProperties": false,
|
|
61186
|
+
"description": "Custom field information"
|
|
61187
|
+
},
|
|
61188
|
+
"description": "Custom field values"
|
|
61189
|
+
}
|
|
61190
|
+
},
|
|
61191
|
+
"required": [
|
|
61192
|
+
"id",
|
|
61193
|
+
"name"
|
|
61194
|
+
],
|
|
61195
|
+
"additionalProperties": false,
|
|
61196
|
+
"description": "Ashby candidate record"
|
|
61197
|
+
},
|
|
61198
|
+
"description": "List of matching candidates"
|
|
61199
|
+
},
|
|
61200
|
+
"error": {
|
|
61201
|
+
"type": "string",
|
|
61202
|
+
"description": "Error message if operation failed"
|
|
61203
|
+
}
|
|
61204
|
+
},
|
|
61205
|
+
"required": [
|
|
61206
|
+
"operation",
|
|
61207
|
+
"success",
|
|
61208
|
+
"error"
|
|
61209
|
+
],
|
|
61210
|
+
"additionalProperties": false
|
|
61211
|
+
},
|
|
61212
|
+
{
|
|
61213
|
+
"type": "object",
|
|
61214
|
+
"properties": {
|
|
61215
|
+
"operation": {
|
|
61216
|
+
"type": "string",
|
|
61217
|
+
"enum": [
|
|
61218
|
+
"add_tag"
|
|
61219
|
+
],
|
|
61220
|
+
"description": "Add tag operation"
|
|
61221
|
+
},
|
|
61222
|
+
"success": {
|
|
61223
|
+
"type": "boolean",
|
|
61224
|
+
"description": "Whether the operation was successful"
|
|
61225
|
+
},
|
|
61226
|
+
"candidate": {
|
|
61227
|
+
"type": "object",
|
|
61228
|
+
"properties": {
|
|
61229
|
+
"id": {
|
|
61230
|
+
"type": "string",
|
|
61231
|
+
"description": "Unique candidate identifier (UUID)"
|
|
61232
|
+
},
|
|
61233
|
+
"createdAt": {
|
|
61234
|
+
"type": "string",
|
|
61235
|
+
"description": "ISO 8601 creation timestamp"
|
|
61236
|
+
},
|
|
61237
|
+
"updatedAt": {
|
|
61238
|
+
"type": "string",
|
|
61239
|
+
"description": "ISO 8601 update timestamp"
|
|
61240
|
+
},
|
|
61241
|
+
"name": {
|
|
61242
|
+
"type": "string",
|
|
61243
|
+
"description": "Full name of the candidate"
|
|
61244
|
+
},
|
|
61245
|
+
"primaryEmailAddress": {
|
|
61246
|
+
"type": "object",
|
|
61247
|
+
"properties": {
|
|
61248
|
+
"value": {
|
|
61249
|
+
"type": "string",
|
|
61250
|
+
"description": "Email address value"
|
|
61251
|
+
},
|
|
61252
|
+
"type": {
|
|
61253
|
+
"type": "string",
|
|
61254
|
+
"enum": [
|
|
61255
|
+
"Personal",
|
|
61256
|
+
"Work",
|
|
61257
|
+
"Other"
|
|
61258
|
+
],
|
|
61259
|
+
"description": "Type of email"
|
|
61260
|
+
},
|
|
61261
|
+
"isPrimary": {
|
|
61262
|
+
"type": "boolean",
|
|
61263
|
+
"description": "Whether this is the primary email"
|
|
61264
|
+
}
|
|
61265
|
+
},
|
|
61266
|
+
"required": [
|
|
61267
|
+
"value",
|
|
61268
|
+
"type",
|
|
61269
|
+
"isPrimary"
|
|
61270
|
+
],
|
|
61271
|
+
"additionalProperties": false,
|
|
61272
|
+
"description": "Primary email address",
|
|
61273
|
+
"nullable": true
|
|
61274
|
+
},
|
|
61275
|
+
"primaryPhoneNumber": {
|
|
61276
|
+
"type": "object",
|
|
61277
|
+
"properties": {
|
|
61278
|
+
"value": {
|
|
61279
|
+
"type": "string",
|
|
61280
|
+
"description": "Phone number value"
|
|
61281
|
+
},
|
|
61282
|
+
"type": {
|
|
61283
|
+
"type": "string",
|
|
61284
|
+
"enum": [
|
|
61285
|
+
"Personal",
|
|
61286
|
+
"Work",
|
|
61287
|
+
"Other"
|
|
61288
|
+
],
|
|
61289
|
+
"description": "Type of phone"
|
|
61290
|
+
},
|
|
61291
|
+
"isPrimary": {
|
|
61292
|
+
"type": "boolean",
|
|
61293
|
+
"description": "Whether this is the primary phone"
|
|
61294
|
+
}
|
|
61295
|
+
},
|
|
61296
|
+
"required": [
|
|
61297
|
+
"value",
|
|
61298
|
+
"type",
|
|
61299
|
+
"isPrimary"
|
|
61300
|
+
],
|
|
61301
|
+
"additionalProperties": false,
|
|
61302
|
+
"description": "Primary phone number",
|
|
61303
|
+
"nullable": true
|
|
61304
|
+
},
|
|
61305
|
+
"customFields": {
|
|
61306
|
+
"type": "array",
|
|
61307
|
+
"items": {
|
|
61308
|
+
"type": "object",
|
|
61309
|
+
"properties": {
|
|
61310
|
+
"id": {
|
|
61311
|
+
"type": "string",
|
|
61312
|
+
"description": "Custom field ID"
|
|
61313
|
+
},
|
|
61314
|
+
"title": {
|
|
61315
|
+
"type": "string",
|
|
61316
|
+
"description": "Custom field title"
|
|
61317
|
+
},
|
|
61318
|
+
"value": {
|
|
61319
|
+
"description": "Custom field value"
|
|
61320
|
+
},
|
|
61321
|
+
"isPrivate": {
|
|
61322
|
+
"type": "boolean",
|
|
61323
|
+
"description": "Whether the field is private"
|
|
61324
|
+
}
|
|
61325
|
+
},
|
|
61326
|
+
"required": [
|
|
61327
|
+
"id",
|
|
61328
|
+
"title"
|
|
61329
|
+
],
|
|
61330
|
+
"additionalProperties": false,
|
|
61331
|
+
"description": "Custom field information"
|
|
61332
|
+
},
|
|
61333
|
+
"description": "Custom field values"
|
|
61334
|
+
}
|
|
61335
|
+
},
|
|
61336
|
+
"required": [
|
|
61337
|
+
"id",
|
|
61338
|
+
"name"
|
|
61339
|
+
],
|
|
61340
|
+
"additionalProperties": false,
|
|
61341
|
+
"description": "Updated candidate details"
|
|
61342
|
+
},
|
|
61343
|
+
"error": {
|
|
61344
|
+
"type": "string",
|
|
61345
|
+
"description": "Error message if operation failed"
|
|
61346
|
+
}
|
|
61347
|
+
},
|
|
61348
|
+
"required": [
|
|
61349
|
+
"operation",
|
|
61350
|
+
"success",
|
|
61351
|
+
"error"
|
|
61352
|
+
],
|
|
61353
|
+
"additionalProperties": false
|
|
61354
|
+
},
|
|
61355
|
+
{
|
|
61356
|
+
"type": "object",
|
|
61357
|
+
"properties": {
|
|
61358
|
+
"operation": {
|
|
61359
|
+
"type": "string",
|
|
61360
|
+
"enum": [
|
|
61361
|
+
"list_tags"
|
|
61362
|
+
],
|
|
61363
|
+
"description": "List tags operation"
|
|
61364
|
+
},
|
|
61365
|
+
"success": {
|
|
61366
|
+
"type": "boolean",
|
|
61367
|
+
"description": "Whether the operation was successful"
|
|
61368
|
+
},
|
|
61369
|
+
"tags": {
|
|
61370
|
+
"type": "array",
|
|
61371
|
+
"items": {
|
|
61372
|
+
"type": "object",
|
|
61373
|
+
"properties": {
|
|
61374
|
+
"id": {
|
|
61375
|
+
"type": "string",
|
|
61376
|
+
"description": "Tag ID"
|
|
61377
|
+
},
|
|
61378
|
+
"title": {
|
|
61379
|
+
"type": "string",
|
|
61380
|
+
"description": "Tag title"
|
|
61381
|
+
},
|
|
61382
|
+
"isArchived": {
|
|
61383
|
+
"type": "boolean",
|
|
61384
|
+
"description": "Whether the tag is archived"
|
|
61385
|
+
}
|
|
61386
|
+
},
|
|
61387
|
+
"required": [
|
|
61388
|
+
"id",
|
|
61389
|
+
"title"
|
|
61390
|
+
],
|
|
61391
|
+
"additionalProperties": false,
|
|
61392
|
+
"description": "Tag information"
|
|
61393
|
+
},
|
|
61394
|
+
"description": "List of candidate tags"
|
|
61395
|
+
},
|
|
61396
|
+
"error": {
|
|
61397
|
+
"type": "string",
|
|
61398
|
+
"description": "Error message if operation failed"
|
|
61399
|
+
}
|
|
61400
|
+
},
|
|
61401
|
+
"required": [
|
|
61402
|
+
"operation",
|
|
61403
|
+
"success",
|
|
61404
|
+
"error"
|
|
61405
|
+
],
|
|
61406
|
+
"additionalProperties": false
|
|
61407
|
+
},
|
|
61408
|
+
{
|
|
61409
|
+
"type": "object",
|
|
61410
|
+
"properties": {
|
|
61411
|
+
"operation": {
|
|
61412
|
+
"type": "string",
|
|
61413
|
+
"enum": [
|
|
61414
|
+
"create_tag"
|
|
61415
|
+
],
|
|
61416
|
+
"description": "Create tag operation"
|
|
61417
|
+
},
|
|
61418
|
+
"success": {
|
|
61419
|
+
"type": "boolean",
|
|
61420
|
+
"description": "Whether the operation was successful"
|
|
61421
|
+
},
|
|
61422
|
+
"tag": {
|
|
61423
|
+
"type": "object",
|
|
61424
|
+
"properties": {
|
|
61425
|
+
"id": {
|
|
61426
|
+
"type": "string",
|
|
61427
|
+
"description": "Tag ID"
|
|
61428
|
+
},
|
|
61429
|
+
"title": {
|
|
61430
|
+
"type": "string",
|
|
61431
|
+
"description": "Tag title"
|
|
61432
|
+
},
|
|
61433
|
+
"isArchived": {
|
|
61434
|
+
"type": "boolean",
|
|
61435
|
+
"description": "Whether the tag is archived"
|
|
61436
|
+
}
|
|
61437
|
+
},
|
|
61438
|
+
"required": [
|
|
61439
|
+
"id",
|
|
61440
|
+
"title"
|
|
61441
|
+
],
|
|
61442
|
+
"additionalProperties": false,
|
|
61443
|
+
"description": "Created tag details"
|
|
61444
|
+
},
|
|
61445
|
+
"error": {
|
|
61446
|
+
"type": "string",
|
|
61447
|
+
"description": "Error message if operation failed"
|
|
61448
|
+
}
|
|
61449
|
+
},
|
|
61450
|
+
"required": [
|
|
61451
|
+
"operation",
|
|
61452
|
+
"success",
|
|
61453
|
+
"error"
|
|
61454
|
+
],
|
|
61455
|
+
"additionalProperties": false
|
|
61456
|
+
},
|
|
61457
|
+
{
|
|
61458
|
+
"type": "object",
|
|
61459
|
+
"properties": {
|
|
61460
|
+
"operation": {
|
|
61461
|
+
"type": "string",
|
|
61462
|
+
"enum": [
|
|
61463
|
+
"list_custom_fields"
|
|
61464
|
+
],
|
|
61465
|
+
"description": "List custom fields operation"
|
|
61466
|
+
},
|
|
61467
|
+
"success": {
|
|
61468
|
+
"type": "boolean",
|
|
61469
|
+
"description": "Whether the operation was successful"
|
|
61470
|
+
},
|
|
61471
|
+
"custom_fields": {
|
|
61472
|
+
"type": "array",
|
|
61473
|
+
"items": {
|
|
61474
|
+
"type": "object",
|
|
61475
|
+
"properties": {
|
|
61476
|
+
"id": {
|
|
61477
|
+
"type": "string",
|
|
61478
|
+
"description": "Custom field ID (UUID)"
|
|
61479
|
+
},
|
|
61480
|
+
"isPrivate": {
|
|
61481
|
+
"type": "boolean",
|
|
61482
|
+
"description": "Whether the field is private"
|
|
61483
|
+
},
|
|
61484
|
+
"title": {
|
|
61485
|
+
"type": "string",
|
|
61486
|
+
"description": "Custom field title"
|
|
61487
|
+
},
|
|
61488
|
+
"objectType": {
|
|
61489
|
+
"type": "string",
|
|
61490
|
+
"description": "Object type this field applies to (e.g., Application, Candidate)"
|
|
61491
|
+
},
|
|
61492
|
+
"isArchived": {
|
|
61493
|
+
"type": "boolean",
|
|
61494
|
+
"description": "Whether the field is archived"
|
|
61495
|
+
},
|
|
61496
|
+
"fieldType": {
|
|
61497
|
+
"type": "string",
|
|
61498
|
+
"description": "Type of field (e.g., MultiValueSelect, String, Number)"
|
|
61499
|
+
},
|
|
61500
|
+
"selectableValues": {
|
|
61501
|
+
"type": "array",
|
|
61502
|
+
"items": {
|
|
61503
|
+
"type": "object",
|
|
61504
|
+
"properties": {
|
|
61505
|
+
"label": {
|
|
61506
|
+
"type": "string",
|
|
61507
|
+
"description": "Display label for the value"
|
|
61508
|
+
},
|
|
61509
|
+
"value": {
|
|
61510
|
+
"type": "string",
|
|
61511
|
+
"description": "Value identifier"
|
|
61512
|
+
},
|
|
61513
|
+
"isArchived": {
|
|
61514
|
+
"type": "boolean",
|
|
61515
|
+
"description": "Whether the value is archived"
|
|
61516
|
+
}
|
|
61517
|
+
},
|
|
61518
|
+
"required": [
|
|
61519
|
+
"label",
|
|
61520
|
+
"value",
|
|
61521
|
+
"isArchived"
|
|
61522
|
+
],
|
|
61523
|
+
"additionalProperties": false,
|
|
61524
|
+
"description": "Selectable value for custom field"
|
|
61525
|
+
},
|
|
61526
|
+
"description": "Available values for select-type fields"
|
|
61527
|
+
}
|
|
61528
|
+
},
|
|
61529
|
+
"required": [
|
|
61530
|
+
"id",
|
|
61531
|
+
"isPrivate",
|
|
61532
|
+
"title",
|
|
61533
|
+
"objectType",
|
|
61534
|
+
"isArchived",
|
|
61535
|
+
"fieldType"
|
|
61536
|
+
],
|
|
61537
|
+
"additionalProperties": false,
|
|
61538
|
+
"description": "Custom field definition"
|
|
61539
|
+
},
|
|
61540
|
+
"description": "List of custom field definitions"
|
|
61541
|
+
},
|
|
61542
|
+
"next_cursor": {
|
|
61543
|
+
"type": "string",
|
|
61544
|
+
"description": "Cursor for fetching the next page of results"
|
|
61545
|
+
},
|
|
61546
|
+
"more_data_available": {
|
|
61547
|
+
"type": "boolean",
|
|
61548
|
+
"description": "Whether more data is available"
|
|
61549
|
+
},
|
|
61550
|
+
"sync_token": {
|
|
61551
|
+
"type": "string",
|
|
61552
|
+
"description": "Token for incremental sync"
|
|
61553
|
+
},
|
|
61554
|
+
"error": {
|
|
61555
|
+
"type": "string",
|
|
61556
|
+
"description": "Error message if operation failed"
|
|
61557
|
+
}
|
|
61558
|
+
},
|
|
61559
|
+
"required": [
|
|
61560
|
+
"operation",
|
|
61561
|
+
"success",
|
|
61562
|
+
"error"
|
|
61563
|
+
],
|
|
61564
|
+
"additionalProperties": false
|
|
61565
|
+
},
|
|
61566
|
+
{
|
|
61567
|
+
"type": "object",
|
|
61568
|
+
"properties": {
|
|
61569
|
+
"operation": {
|
|
61570
|
+
"type": "string",
|
|
61571
|
+
"enum": [
|
|
61572
|
+
"list_jobs"
|
|
61573
|
+
],
|
|
61574
|
+
"description": "List jobs operation"
|
|
61575
|
+
},
|
|
61576
|
+
"success": {
|
|
61577
|
+
"type": "boolean",
|
|
61578
|
+
"description": "Whether the operation was successful"
|
|
61579
|
+
},
|
|
61580
|
+
"jobs": {
|
|
61581
|
+
"type": "array",
|
|
61582
|
+
"items": {
|
|
61583
|
+
"type": "object",
|
|
61584
|
+
"properties": {
|
|
61585
|
+
"id": {
|
|
61586
|
+
"type": "string",
|
|
61587
|
+
"description": "Unique job identifier (UUID)"
|
|
61588
|
+
},
|
|
61589
|
+
"title": {
|
|
61590
|
+
"type": "string",
|
|
61591
|
+
"description": "Job title"
|
|
61592
|
+
},
|
|
61593
|
+
"status": {
|
|
61594
|
+
"type": "string",
|
|
61595
|
+
"description": "Job status (e.g., Open, Closed, Draft, Archived)"
|
|
61596
|
+
},
|
|
61597
|
+
"departmentId": {
|
|
61598
|
+
"type": "string",
|
|
61599
|
+
"nullable": true,
|
|
61600
|
+
"description": "Department ID"
|
|
61601
|
+
},
|
|
61602
|
+
"teamId": {
|
|
61603
|
+
"type": "string",
|
|
61604
|
+
"nullable": true,
|
|
61605
|
+
"description": "Team ID"
|
|
61606
|
+
},
|
|
61607
|
+
"locationId": {
|
|
61608
|
+
"type": "string",
|
|
61609
|
+
"nullable": true,
|
|
61610
|
+
"description": "Location ID"
|
|
61611
|
+
},
|
|
61612
|
+
"locationIds": {
|
|
61613
|
+
"type": "array",
|
|
61614
|
+
"items": {
|
|
61615
|
+
"type": "string"
|
|
61616
|
+
},
|
|
61617
|
+
"description": "Location IDs"
|
|
61618
|
+
},
|
|
61619
|
+
"customFields": {
|
|
61620
|
+
"type": "array",
|
|
61621
|
+
"items": {
|
|
61622
|
+
"type": "object",
|
|
61623
|
+
"properties": {
|
|
61624
|
+
"id": {
|
|
61625
|
+
"type": "string",
|
|
61626
|
+
"description": "Custom field ID"
|
|
61627
|
+
},
|
|
61628
|
+
"title": {
|
|
61629
|
+
"type": "string",
|
|
61630
|
+
"description": "Custom field title"
|
|
61631
|
+
},
|
|
61632
|
+
"value": {
|
|
61633
|
+
"description": "Custom field value"
|
|
61634
|
+
},
|
|
61635
|
+
"isPrivate": {
|
|
61636
|
+
"type": "boolean",
|
|
61637
|
+
"description": "Whether the field is private"
|
|
61638
|
+
}
|
|
61639
|
+
},
|
|
61640
|
+
"required": [
|
|
61641
|
+
"id",
|
|
61642
|
+
"title"
|
|
61643
|
+
],
|
|
61644
|
+
"additionalProperties": false,
|
|
61645
|
+
"description": "Custom field information"
|
|
61646
|
+
},
|
|
61647
|
+
"description": "Custom field values"
|
|
61648
|
+
},
|
|
61649
|
+
"openedAt": {
|
|
61650
|
+
"type": "string",
|
|
61651
|
+
"nullable": true,
|
|
61652
|
+
"description": "ISO 8601 opened timestamp"
|
|
61653
|
+
},
|
|
61654
|
+
"closedAt": {
|
|
61655
|
+
"type": "string",
|
|
61656
|
+
"nullable": true,
|
|
61657
|
+
"description": "ISO 8601 closed timestamp"
|
|
61658
|
+
},
|
|
61659
|
+
"createdAt": {
|
|
61660
|
+
"type": "string",
|
|
61661
|
+
"description": "ISO 8601 creation timestamp"
|
|
61662
|
+
},
|
|
61663
|
+
"updatedAt": {
|
|
61664
|
+
"type": "string",
|
|
61665
|
+
"description": "ISO 8601 update timestamp"
|
|
61666
|
+
}
|
|
61667
|
+
},
|
|
61668
|
+
"required": [
|
|
61669
|
+
"id",
|
|
61670
|
+
"title"
|
|
61671
|
+
],
|
|
61672
|
+
"additionalProperties": false,
|
|
61673
|
+
"description": "Ashby job record"
|
|
61674
|
+
},
|
|
61675
|
+
"description": "List of jobs"
|
|
61676
|
+
},
|
|
61677
|
+
"next_cursor": {
|
|
61678
|
+
"type": "string",
|
|
61679
|
+
"description": "Cursor for next page"
|
|
61680
|
+
},
|
|
61681
|
+
"more_data_available": {
|
|
61682
|
+
"type": "boolean",
|
|
61683
|
+
"description": "Whether more data is available"
|
|
61684
|
+
},
|
|
61685
|
+
"error": {
|
|
61686
|
+
"type": "string",
|
|
61687
|
+
"description": "Error message if operation failed"
|
|
61688
|
+
}
|
|
61689
|
+
},
|
|
61690
|
+
"required": [
|
|
61691
|
+
"operation",
|
|
61692
|
+
"success",
|
|
61693
|
+
"error"
|
|
61694
|
+
],
|
|
61695
|
+
"additionalProperties": false
|
|
61696
|
+
},
|
|
61697
|
+
{
|
|
61698
|
+
"type": "object",
|
|
61699
|
+
"properties": {
|
|
61700
|
+
"operation": {
|
|
61701
|
+
"type": "string",
|
|
61702
|
+
"enum": [
|
|
61703
|
+
"get_job"
|
|
61704
|
+
],
|
|
61705
|
+
"description": "Get job operation"
|
|
61706
|
+
},
|
|
61707
|
+
"success": {
|
|
61708
|
+
"type": "boolean",
|
|
61709
|
+
"description": "Whether the operation was successful"
|
|
61710
|
+
},
|
|
61711
|
+
"job": {
|
|
61712
|
+
"type": "object",
|
|
61713
|
+
"properties": {
|
|
61714
|
+
"id": {
|
|
61715
|
+
"type": "string",
|
|
61716
|
+
"description": "Unique job identifier (UUID)"
|
|
61717
|
+
},
|
|
61718
|
+
"title": {
|
|
61719
|
+
"type": "string",
|
|
61720
|
+
"description": "Job title"
|
|
61721
|
+
},
|
|
61722
|
+
"status": {
|
|
61723
|
+
"type": "string",
|
|
61724
|
+
"description": "Job status (e.g., Open, Closed, Draft, Archived)"
|
|
61725
|
+
},
|
|
61726
|
+
"departmentId": {
|
|
61727
|
+
"type": "string",
|
|
61728
|
+
"nullable": true,
|
|
61729
|
+
"description": "Department ID"
|
|
61730
|
+
},
|
|
61731
|
+
"teamId": {
|
|
61732
|
+
"type": "string",
|
|
61733
|
+
"nullable": true,
|
|
61734
|
+
"description": "Team ID"
|
|
61735
|
+
},
|
|
61736
|
+
"locationId": {
|
|
61737
|
+
"type": "string",
|
|
61738
|
+
"nullable": true,
|
|
61739
|
+
"description": "Location ID"
|
|
61740
|
+
},
|
|
61741
|
+
"locationIds": {
|
|
61742
|
+
"type": "array",
|
|
61743
|
+
"items": {
|
|
61744
|
+
"type": "string"
|
|
61745
|
+
},
|
|
61746
|
+
"description": "Location IDs"
|
|
61747
|
+
},
|
|
61748
|
+
"customFields": {
|
|
61749
|
+
"type": "array",
|
|
61750
|
+
"items": {
|
|
61751
|
+
"type": "object",
|
|
61752
|
+
"properties": {
|
|
61753
|
+
"id": {
|
|
61754
|
+
"type": "string",
|
|
61755
|
+
"description": "Custom field ID"
|
|
61756
|
+
},
|
|
61757
|
+
"title": {
|
|
61758
|
+
"type": "string",
|
|
61759
|
+
"description": "Custom field title"
|
|
61760
|
+
},
|
|
61761
|
+
"value": {
|
|
61762
|
+
"description": "Custom field value"
|
|
61763
|
+
},
|
|
61764
|
+
"isPrivate": {
|
|
61765
|
+
"type": "boolean",
|
|
61766
|
+
"description": "Whether the field is private"
|
|
61767
|
+
}
|
|
61768
|
+
},
|
|
61769
|
+
"required": [
|
|
61770
|
+
"id",
|
|
61771
|
+
"title"
|
|
61772
|
+
],
|
|
61773
|
+
"additionalProperties": false,
|
|
61774
|
+
"description": "Custom field information"
|
|
61775
|
+
},
|
|
61776
|
+
"description": "Custom field values"
|
|
61777
|
+
},
|
|
61778
|
+
"openedAt": {
|
|
61779
|
+
"type": "string",
|
|
61780
|
+
"nullable": true,
|
|
61781
|
+
"description": "ISO 8601 opened timestamp"
|
|
61782
|
+
},
|
|
61783
|
+
"closedAt": {
|
|
61784
|
+
"type": "string",
|
|
61785
|
+
"nullable": true,
|
|
61786
|
+
"description": "ISO 8601 closed timestamp"
|
|
61787
|
+
},
|
|
61788
|
+
"createdAt": {
|
|
61789
|
+
"type": "string",
|
|
61790
|
+
"description": "ISO 8601 creation timestamp"
|
|
61791
|
+
},
|
|
61792
|
+
"updatedAt": {
|
|
61793
|
+
"type": "string",
|
|
61794
|
+
"description": "ISO 8601 update timestamp"
|
|
61795
|
+
}
|
|
61796
|
+
},
|
|
61797
|
+
"required": [
|
|
61798
|
+
"id",
|
|
61799
|
+
"title"
|
|
61800
|
+
],
|
|
61801
|
+
"additionalProperties": false,
|
|
61802
|
+
"description": "Job details"
|
|
61803
|
+
},
|
|
61804
|
+
"interview_stages": {
|
|
61805
|
+
"type": "array",
|
|
61806
|
+
"items": {
|
|
61807
|
+
"type": "object",
|
|
61808
|
+
"properties": {
|
|
61809
|
+
"id": {
|
|
61810
|
+
"type": "string",
|
|
61811
|
+
"description": "Interview stage ID (UUID)"
|
|
61812
|
+
},
|
|
61813
|
+
"title": {
|
|
61814
|
+
"type": "string",
|
|
61815
|
+
"description": "Stage title"
|
|
61816
|
+
},
|
|
61817
|
+
"type": {
|
|
61818
|
+
"type": "string",
|
|
61819
|
+
"description": "Stage type (e.g., PreInterviewScreen, IndividualInterview)"
|
|
61820
|
+
},
|
|
61821
|
+
"orderInInterviewPlan": {
|
|
61822
|
+
"type": "number",
|
|
61823
|
+
"description": "Order in the interview plan"
|
|
61824
|
+
},
|
|
61825
|
+
"interviewPlanId": {
|
|
61826
|
+
"type": "string",
|
|
61827
|
+
"description": "Interview plan ID"
|
|
61828
|
+
}
|
|
61829
|
+
},
|
|
61830
|
+
"required": [
|
|
61831
|
+
"id",
|
|
61832
|
+
"title"
|
|
61833
|
+
],
|
|
61834
|
+
"additionalProperties": false,
|
|
61835
|
+
"description": "Interview stage"
|
|
61836
|
+
},
|
|
61837
|
+
"description": "Interview stages for this job"
|
|
61838
|
+
},
|
|
61839
|
+
"error": {
|
|
61840
|
+
"type": "string",
|
|
61841
|
+
"description": "Error message if operation failed"
|
|
61842
|
+
}
|
|
61843
|
+
},
|
|
61844
|
+
"required": [
|
|
61845
|
+
"operation",
|
|
61846
|
+
"success",
|
|
61847
|
+
"error"
|
|
61848
|
+
],
|
|
61849
|
+
"additionalProperties": false
|
|
61850
|
+
},
|
|
61851
|
+
{
|
|
61852
|
+
"type": "object",
|
|
61853
|
+
"properties": {
|
|
61854
|
+
"operation": {
|
|
61855
|
+
"type": "string",
|
|
61856
|
+
"enum": [
|
|
61857
|
+
"list_applications"
|
|
61858
|
+
],
|
|
61859
|
+
"description": "List applications operation"
|
|
61860
|
+
},
|
|
61861
|
+
"success": {
|
|
61862
|
+
"type": "boolean",
|
|
61863
|
+
"description": "Whether the operation was successful"
|
|
61864
|
+
},
|
|
61865
|
+
"applications": {
|
|
61866
|
+
"type": "array",
|
|
61867
|
+
"items": {
|
|
61868
|
+
"type": "object",
|
|
61869
|
+
"properties": {
|
|
61870
|
+
"id": {
|
|
61871
|
+
"type": "string",
|
|
61872
|
+
"description": "Unique application identifier (UUID)"
|
|
61873
|
+
},
|
|
61874
|
+
"createdAt": {
|
|
61875
|
+
"type": "string",
|
|
61876
|
+
"description": "ISO 8601 creation timestamp"
|
|
61877
|
+
},
|
|
61878
|
+
"updatedAt": {
|
|
61879
|
+
"type": "string",
|
|
61880
|
+
"description": "ISO 8601 update timestamp"
|
|
61881
|
+
},
|
|
61882
|
+
"status": {
|
|
61883
|
+
"type": "string",
|
|
61884
|
+
"description": "Application status (Active, Hired, Archived, Lead)"
|
|
61885
|
+
},
|
|
61886
|
+
"candidateId": {
|
|
61887
|
+
"type": "string",
|
|
61888
|
+
"nullable": true,
|
|
61889
|
+
"description": "Candidate ID"
|
|
61890
|
+
},
|
|
61891
|
+
"jobId": {
|
|
61892
|
+
"type": "string",
|
|
61893
|
+
"nullable": true,
|
|
61894
|
+
"description": "Job ID"
|
|
61895
|
+
},
|
|
61896
|
+
"currentInterviewStage": {
|
|
61897
|
+
"type": "object",
|
|
61898
|
+
"properties": {
|
|
61899
|
+
"id": {
|
|
61900
|
+
"type": "string",
|
|
61901
|
+
"description": "Interview stage ID (UUID)"
|
|
61902
|
+
},
|
|
61903
|
+
"title": {
|
|
61904
|
+
"type": "string",
|
|
61905
|
+
"description": "Stage title"
|
|
61906
|
+
},
|
|
61907
|
+
"type": {
|
|
61908
|
+
"type": "string",
|
|
61909
|
+
"description": "Stage type (e.g., PreInterviewScreen, IndividualInterview)"
|
|
61910
|
+
},
|
|
61911
|
+
"orderInInterviewPlan": {
|
|
61912
|
+
"type": "number",
|
|
61913
|
+
"description": "Order in the interview plan"
|
|
61914
|
+
},
|
|
61915
|
+
"interviewPlanId": {
|
|
61916
|
+
"type": "string",
|
|
61917
|
+
"description": "Interview plan ID"
|
|
61918
|
+
}
|
|
61919
|
+
},
|
|
61920
|
+
"required": [
|
|
61921
|
+
"id",
|
|
61922
|
+
"title"
|
|
61923
|
+
],
|
|
61924
|
+
"additionalProperties": false,
|
|
61925
|
+
"description": "Current interview stage",
|
|
61926
|
+
"nullable": true
|
|
61927
|
+
},
|
|
61928
|
+
"source": {
|
|
61929
|
+
"nullable": true,
|
|
61930
|
+
"description": "Application source"
|
|
61931
|
+
},
|
|
61932
|
+
"archiveReason": {
|
|
61933
|
+
"nullable": true,
|
|
61934
|
+
"description": "Archive reason if archived"
|
|
61935
|
+
},
|
|
61936
|
+
"customFields": {
|
|
61937
|
+
"type": "array",
|
|
61938
|
+
"items": {
|
|
61939
|
+
"type": "object",
|
|
61940
|
+
"properties": {
|
|
61941
|
+
"id": {
|
|
61942
|
+
"type": "string",
|
|
61943
|
+
"description": "Custom field ID"
|
|
61944
|
+
},
|
|
61945
|
+
"title": {
|
|
61946
|
+
"type": "string",
|
|
61947
|
+
"description": "Custom field title"
|
|
61948
|
+
},
|
|
61949
|
+
"value": {
|
|
61950
|
+
"description": "Custom field value"
|
|
61951
|
+
},
|
|
61952
|
+
"isPrivate": {
|
|
61953
|
+
"type": "boolean",
|
|
61954
|
+
"description": "Whether the field is private"
|
|
61955
|
+
}
|
|
61956
|
+
},
|
|
61957
|
+
"required": [
|
|
61958
|
+
"id",
|
|
61959
|
+
"title"
|
|
61960
|
+
],
|
|
61961
|
+
"additionalProperties": false,
|
|
61962
|
+
"description": "Custom field information"
|
|
61963
|
+
},
|
|
61964
|
+
"description": "Custom field values"
|
|
61965
|
+
},
|
|
61966
|
+
"hiringTeam": {
|
|
61967
|
+
"type": "array",
|
|
61968
|
+
"items": {
|
|
61969
|
+
"type": "object",
|
|
61970
|
+
"properties": {
|
|
61971
|
+
"userId": {
|
|
61972
|
+
"type": "string",
|
|
61973
|
+
"description": "Team member user ID"
|
|
61974
|
+
},
|
|
61975
|
+
"role": {
|
|
61976
|
+
"type": "string",
|
|
61977
|
+
"description": "Role in hiring team"
|
|
61978
|
+
},
|
|
61979
|
+
"email": {
|
|
61980
|
+
"type": "string",
|
|
61981
|
+
"description": "Team member email"
|
|
61982
|
+
},
|
|
61983
|
+
"firstName": {
|
|
61984
|
+
"type": "string",
|
|
61985
|
+
"description": "First name"
|
|
61986
|
+
},
|
|
61987
|
+
"lastName": {
|
|
61988
|
+
"type": "string",
|
|
61989
|
+
"description": "Last name"
|
|
61990
|
+
}
|
|
61991
|
+
},
|
|
61992
|
+
"required": [
|
|
61993
|
+
"userId",
|
|
61994
|
+
"role"
|
|
61995
|
+
],
|
|
61996
|
+
"additionalProperties": false
|
|
61997
|
+
},
|
|
61998
|
+
"description": "Hiring team members"
|
|
61999
|
+
}
|
|
62000
|
+
},
|
|
62001
|
+
"required": [
|
|
62002
|
+
"id"
|
|
62003
|
+
],
|
|
62004
|
+
"additionalProperties": false,
|
|
62005
|
+
"description": "Ashby application record"
|
|
62006
|
+
},
|
|
62007
|
+
"description": "List of applications"
|
|
62008
|
+
},
|
|
62009
|
+
"next_cursor": {
|
|
62010
|
+
"type": "string",
|
|
62011
|
+
"description": "Cursor for next page"
|
|
62012
|
+
},
|
|
62013
|
+
"more_data_available": {
|
|
62014
|
+
"type": "boolean",
|
|
62015
|
+
"description": "Whether more data is available"
|
|
62016
|
+
},
|
|
62017
|
+
"error": {
|
|
62018
|
+
"type": "string",
|
|
62019
|
+
"description": "Error message if operation failed"
|
|
62020
|
+
}
|
|
62021
|
+
},
|
|
62022
|
+
"required": [
|
|
62023
|
+
"operation",
|
|
62024
|
+
"success",
|
|
62025
|
+
"error"
|
|
62026
|
+
],
|
|
62027
|
+
"additionalProperties": false
|
|
62028
|
+
},
|
|
62029
|
+
{
|
|
62030
|
+
"type": "object",
|
|
62031
|
+
"properties": {
|
|
62032
|
+
"operation": {
|
|
62033
|
+
"type": "string",
|
|
62034
|
+
"enum": [
|
|
62035
|
+
"get_application"
|
|
62036
|
+
],
|
|
62037
|
+
"description": "Get application operation"
|
|
62038
|
+
},
|
|
62039
|
+
"success": {
|
|
62040
|
+
"type": "boolean",
|
|
62041
|
+
"description": "Whether the operation was successful"
|
|
62042
|
+
},
|
|
62043
|
+
"application": {
|
|
62044
|
+
"type": "object",
|
|
62045
|
+
"properties": {
|
|
62046
|
+
"id": {
|
|
62047
|
+
"type": "string",
|
|
62048
|
+
"description": "Unique application identifier (UUID)"
|
|
62049
|
+
},
|
|
62050
|
+
"createdAt": {
|
|
62051
|
+
"type": "string",
|
|
62052
|
+
"description": "ISO 8601 creation timestamp"
|
|
62053
|
+
},
|
|
62054
|
+
"updatedAt": {
|
|
62055
|
+
"type": "string",
|
|
62056
|
+
"description": "ISO 8601 update timestamp"
|
|
62057
|
+
},
|
|
62058
|
+
"status": {
|
|
62059
|
+
"type": "string",
|
|
62060
|
+
"description": "Application status (Active, Hired, Archived, Lead)"
|
|
62061
|
+
},
|
|
62062
|
+
"candidateId": {
|
|
62063
|
+
"type": "string",
|
|
62064
|
+
"nullable": true,
|
|
62065
|
+
"description": "Candidate ID"
|
|
62066
|
+
},
|
|
62067
|
+
"jobId": {
|
|
62068
|
+
"type": "string",
|
|
62069
|
+
"nullable": true,
|
|
62070
|
+
"description": "Job ID"
|
|
62071
|
+
},
|
|
62072
|
+
"currentInterviewStage": {
|
|
62073
|
+
"type": "object",
|
|
62074
|
+
"properties": {
|
|
62075
|
+
"id": {
|
|
62076
|
+
"type": "string",
|
|
62077
|
+
"description": "Interview stage ID (UUID)"
|
|
62078
|
+
},
|
|
62079
|
+
"title": {
|
|
62080
|
+
"type": "string",
|
|
62081
|
+
"description": "Stage title"
|
|
62082
|
+
},
|
|
62083
|
+
"type": {
|
|
62084
|
+
"type": "string",
|
|
62085
|
+
"description": "Stage type (e.g., PreInterviewScreen, IndividualInterview)"
|
|
62086
|
+
},
|
|
62087
|
+
"orderInInterviewPlan": {
|
|
62088
|
+
"type": "number",
|
|
62089
|
+
"description": "Order in the interview plan"
|
|
62090
|
+
},
|
|
62091
|
+
"interviewPlanId": {
|
|
62092
|
+
"type": "string",
|
|
62093
|
+
"description": "Interview plan ID"
|
|
62094
|
+
}
|
|
62095
|
+
},
|
|
62096
|
+
"required": [
|
|
62097
|
+
"id",
|
|
62098
|
+
"title"
|
|
62099
|
+
],
|
|
62100
|
+
"additionalProperties": false,
|
|
62101
|
+
"description": "Current interview stage",
|
|
62102
|
+
"nullable": true
|
|
62103
|
+
},
|
|
62104
|
+
"source": {
|
|
62105
|
+
"nullable": true,
|
|
62106
|
+
"description": "Application source"
|
|
62107
|
+
},
|
|
62108
|
+
"archiveReason": {
|
|
62109
|
+
"nullable": true,
|
|
62110
|
+
"description": "Archive reason if archived"
|
|
62111
|
+
},
|
|
62112
|
+
"customFields": {
|
|
62113
|
+
"type": "array",
|
|
62114
|
+
"items": {
|
|
62115
|
+
"type": "object",
|
|
62116
|
+
"properties": {
|
|
62117
|
+
"id": {
|
|
62118
|
+
"type": "string",
|
|
62119
|
+
"description": "Custom field ID"
|
|
62120
|
+
},
|
|
62121
|
+
"title": {
|
|
62122
|
+
"type": "string",
|
|
62123
|
+
"description": "Custom field title"
|
|
62124
|
+
},
|
|
62125
|
+
"value": {
|
|
62126
|
+
"description": "Custom field value"
|
|
62127
|
+
},
|
|
62128
|
+
"isPrivate": {
|
|
62129
|
+
"type": "boolean",
|
|
62130
|
+
"description": "Whether the field is private"
|
|
62131
|
+
}
|
|
62132
|
+
},
|
|
62133
|
+
"required": [
|
|
62134
|
+
"id",
|
|
62135
|
+
"title"
|
|
62136
|
+
],
|
|
62137
|
+
"additionalProperties": false,
|
|
62138
|
+
"description": "Custom field information"
|
|
62139
|
+
},
|
|
62140
|
+
"description": "Custom field values"
|
|
62141
|
+
},
|
|
62142
|
+
"hiringTeam": {
|
|
62143
|
+
"type": "array",
|
|
62144
|
+
"items": {
|
|
62145
|
+
"type": "object",
|
|
62146
|
+
"properties": {
|
|
62147
|
+
"userId": {
|
|
62148
|
+
"type": "string",
|
|
62149
|
+
"description": "Team member user ID"
|
|
62150
|
+
},
|
|
62151
|
+
"role": {
|
|
62152
|
+
"type": "string",
|
|
62153
|
+
"description": "Role in hiring team"
|
|
62154
|
+
},
|
|
62155
|
+
"email": {
|
|
62156
|
+
"type": "string",
|
|
62157
|
+
"description": "Team member email"
|
|
62158
|
+
},
|
|
62159
|
+
"firstName": {
|
|
62160
|
+
"type": "string",
|
|
62161
|
+
"description": "First name"
|
|
62162
|
+
},
|
|
62163
|
+
"lastName": {
|
|
62164
|
+
"type": "string",
|
|
62165
|
+
"description": "Last name"
|
|
62166
|
+
}
|
|
62167
|
+
},
|
|
62168
|
+
"required": [
|
|
62169
|
+
"userId",
|
|
62170
|
+
"role"
|
|
62171
|
+
],
|
|
62172
|
+
"additionalProperties": false
|
|
62173
|
+
},
|
|
62174
|
+
"description": "Hiring team members"
|
|
62175
|
+
}
|
|
62176
|
+
},
|
|
62177
|
+
"required": [
|
|
62178
|
+
"id"
|
|
62179
|
+
],
|
|
62180
|
+
"additionalProperties": false,
|
|
62181
|
+
"description": "Application details"
|
|
62182
|
+
},
|
|
62183
|
+
"candidate": {
|
|
62184
|
+
"type": "object",
|
|
62185
|
+
"properties": {
|
|
62186
|
+
"id": {
|
|
62187
|
+
"type": "string",
|
|
62188
|
+
"description": "Unique candidate identifier (UUID)"
|
|
62189
|
+
},
|
|
62190
|
+
"createdAt": {
|
|
62191
|
+
"type": "string",
|
|
62192
|
+
"description": "ISO 8601 creation timestamp"
|
|
62193
|
+
},
|
|
62194
|
+
"updatedAt": {
|
|
62195
|
+
"type": "string",
|
|
62196
|
+
"description": "ISO 8601 update timestamp"
|
|
62197
|
+
},
|
|
62198
|
+
"name": {
|
|
62199
|
+
"type": "string",
|
|
62200
|
+
"description": "Full name of the candidate"
|
|
62201
|
+
},
|
|
62202
|
+
"primaryEmailAddress": {
|
|
62203
|
+
"type": "object",
|
|
62204
|
+
"properties": {
|
|
62205
|
+
"value": {
|
|
62206
|
+
"type": "string",
|
|
62207
|
+
"description": "Email address value"
|
|
62208
|
+
},
|
|
62209
|
+
"type": {
|
|
62210
|
+
"type": "string",
|
|
62211
|
+
"enum": [
|
|
62212
|
+
"Personal",
|
|
62213
|
+
"Work",
|
|
62214
|
+
"Other"
|
|
62215
|
+
],
|
|
62216
|
+
"description": "Type of email"
|
|
62217
|
+
},
|
|
62218
|
+
"isPrimary": {
|
|
62219
|
+
"type": "boolean",
|
|
62220
|
+
"description": "Whether this is the primary email"
|
|
62221
|
+
}
|
|
62222
|
+
},
|
|
62223
|
+
"required": [
|
|
62224
|
+
"value",
|
|
62225
|
+
"type",
|
|
62226
|
+
"isPrimary"
|
|
62227
|
+
],
|
|
62228
|
+
"additionalProperties": false,
|
|
62229
|
+
"description": "Primary email address",
|
|
62230
|
+
"nullable": true
|
|
62231
|
+
},
|
|
62232
|
+
"primaryPhoneNumber": {
|
|
62233
|
+
"type": "object",
|
|
62234
|
+
"properties": {
|
|
62235
|
+
"value": {
|
|
62236
|
+
"type": "string",
|
|
62237
|
+
"description": "Phone number value"
|
|
62238
|
+
},
|
|
62239
|
+
"type": {
|
|
62240
|
+
"type": "string",
|
|
62241
|
+
"enum": [
|
|
62242
|
+
"Personal",
|
|
62243
|
+
"Work",
|
|
62244
|
+
"Other"
|
|
62245
|
+
],
|
|
62246
|
+
"description": "Type of phone"
|
|
62247
|
+
},
|
|
62248
|
+
"isPrimary": {
|
|
62249
|
+
"type": "boolean",
|
|
62250
|
+
"description": "Whether this is the primary phone"
|
|
62251
|
+
}
|
|
62252
|
+
},
|
|
62253
|
+
"required": [
|
|
62254
|
+
"value",
|
|
62255
|
+
"type",
|
|
62256
|
+
"isPrimary"
|
|
62257
|
+
],
|
|
62258
|
+
"additionalProperties": false,
|
|
62259
|
+
"description": "Primary phone number",
|
|
62260
|
+
"nullable": true
|
|
62261
|
+
},
|
|
62262
|
+
"customFields": {
|
|
62263
|
+
"type": "array",
|
|
62264
|
+
"items": {
|
|
62265
|
+
"type": "object",
|
|
62266
|
+
"properties": {
|
|
62267
|
+
"id": {
|
|
62268
|
+
"type": "string",
|
|
62269
|
+
"description": "Custom field ID"
|
|
62270
|
+
},
|
|
62271
|
+
"title": {
|
|
62272
|
+
"type": "string",
|
|
62273
|
+
"description": "Custom field title"
|
|
62274
|
+
},
|
|
62275
|
+
"value": {
|
|
62276
|
+
"description": "Custom field value"
|
|
62277
|
+
},
|
|
62278
|
+
"isPrivate": {
|
|
62279
|
+
"type": "boolean",
|
|
62280
|
+
"description": "Whether the field is private"
|
|
62281
|
+
}
|
|
62282
|
+
},
|
|
62283
|
+
"required": [
|
|
62284
|
+
"id",
|
|
62285
|
+
"title"
|
|
62286
|
+
],
|
|
62287
|
+
"additionalProperties": false,
|
|
62288
|
+
"description": "Custom field information"
|
|
62289
|
+
},
|
|
62290
|
+
"description": "Custom field values"
|
|
62291
|
+
}
|
|
62292
|
+
},
|
|
62293
|
+
"required": [
|
|
62294
|
+
"id",
|
|
62295
|
+
"name"
|
|
62296
|
+
],
|
|
62297
|
+
"additionalProperties": false,
|
|
62298
|
+
"description": "Associated candidate"
|
|
62299
|
+
},
|
|
62300
|
+
"job": {
|
|
62301
|
+
"type": "object",
|
|
62302
|
+
"properties": {
|
|
62303
|
+
"id": {
|
|
62304
|
+
"type": "string",
|
|
62305
|
+
"description": "Unique job identifier (UUID)"
|
|
62306
|
+
},
|
|
62307
|
+
"title": {
|
|
62308
|
+
"type": "string",
|
|
62309
|
+
"description": "Job title"
|
|
62310
|
+
},
|
|
62311
|
+
"status": {
|
|
62312
|
+
"type": "string",
|
|
62313
|
+
"description": "Job status (e.g., Open, Closed, Draft, Archived)"
|
|
62314
|
+
},
|
|
62315
|
+
"departmentId": {
|
|
62316
|
+
"type": "string",
|
|
62317
|
+
"nullable": true,
|
|
62318
|
+
"description": "Department ID"
|
|
62319
|
+
},
|
|
62320
|
+
"teamId": {
|
|
62321
|
+
"type": "string",
|
|
62322
|
+
"nullable": true,
|
|
62323
|
+
"description": "Team ID"
|
|
62324
|
+
},
|
|
62325
|
+
"locationId": {
|
|
62326
|
+
"type": "string",
|
|
62327
|
+
"nullable": true,
|
|
62328
|
+
"description": "Location ID"
|
|
62329
|
+
},
|
|
62330
|
+
"locationIds": {
|
|
62331
|
+
"type": "array",
|
|
62332
|
+
"items": {
|
|
62333
|
+
"type": "string"
|
|
62334
|
+
},
|
|
62335
|
+
"description": "Location IDs"
|
|
62336
|
+
},
|
|
62337
|
+
"customFields": {
|
|
62338
|
+
"type": "array",
|
|
62339
|
+
"items": {
|
|
62340
|
+
"type": "object",
|
|
62341
|
+
"properties": {
|
|
62342
|
+
"id": {
|
|
62343
|
+
"type": "string",
|
|
62344
|
+
"description": "Custom field ID"
|
|
62345
|
+
},
|
|
62346
|
+
"title": {
|
|
62347
|
+
"type": "string",
|
|
62348
|
+
"description": "Custom field title"
|
|
62349
|
+
},
|
|
62350
|
+
"value": {
|
|
62351
|
+
"description": "Custom field value"
|
|
62352
|
+
},
|
|
62353
|
+
"isPrivate": {
|
|
62354
|
+
"type": "boolean",
|
|
62355
|
+
"description": "Whether the field is private"
|
|
62356
|
+
}
|
|
62357
|
+
},
|
|
62358
|
+
"required": [
|
|
62359
|
+
"id",
|
|
62360
|
+
"title"
|
|
62361
|
+
],
|
|
62362
|
+
"additionalProperties": false,
|
|
62363
|
+
"description": "Custom field information"
|
|
62364
|
+
},
|
|
62365
|
+
"description": "Custom field values"
|
|
62366
|
+
},
|
|
62367
|
+
"openedAt": {
|
|
62368
|
+
"type": "string",
|
|
62369
|
+
"nullable": true,
|
|
62370
|
+
"description": "ISO 8601 opened timestamp"
|
|
62371
|
+
},
|
|
62372
|
+
"closedAt": {
|
|
62373
|
+
"type": "string",
|
|
62374
|
+
"nullable": true,
|
|
62375
|
+
"description": "ISO 8601 closed timestamp"
|
|
62376
|
+
},
|
|
62377
|
+
"createdAt": {
|
|
62378
|
+
"type": "string",
|
|
62379
|
+
"description": "ISO 8601 creation timestamp"
|
|
62380
|
+
},
|
|
62381
|
+
"updatedAt": {
|
|
62382
|
+
"type": "string",
|
|
62383
|
+
"description": "ISO 8601 update timestamp"
|
|
62384
|
+
}
|
|
62385
|
+
},
|
|
62386
|
+
"required": [
|
|
62387
|
+
"id",
|
|
62388
|
+
"title"
|
|
62389
|
+
],
|
|
62390
|
+
"additionalProperties": false,
|
|
62391
|
+
"description": "Associated job"
|
|
62392
|
+
},
|
|
62393
|
+
"error": {
|
|
62394
|
+
"type": "string",
|
|
62395
|
+
"description": "Error message if operation failed"
|
|
62396
|
+
}
|
|
62397
|
+
},
|
|
62398
|
+
"required": [
|
|
62399
|
+
"operation",
|
|
62400
|
+
"success",
|
|
62401
|
+
"error"
|
|
62402
|
+
],
|
|
62403
|
+
"additionalProperties": false
|
|
62404
|
+
},
|
|
62405
|
+
{
|
|
62406
|
+
"type": "object",
|
|
62407
|
+
"properties": {
|
|
62408
|
+
"operation": {
|
|
62409
|
+
"type": "string",
|
|
62410
|
+
"enum": [
|
|
62411
|
+
"create_application"
|
|
62412
|
+
],
|
|
62413
|
+
"description": "Create application operation"
|
|
62414
|
+
},
|
|
62415
|
+
"success": {
|
|
62416
|
+
"type": "boolean",
|
|
62417
|
+
"description": "Whether the operation was successful"
|
|
62418
|
+
},
|
|
62419
|
+
"application": {
|
|
62420
|
+
"type": "object",
|
|
62421
|
+
"properties": {
|
|
62422
|
+
"id": {
|
|
62423
|
+
"type": "string",
|
|
62424
|
+
"description": "Unique application identifier (UUID)"
|
|
62425
|
+
},
|
|
62426
|
+
"createdAt": {
|
|
62427
|
+
"type": "string",
|
|
62428
|
+
"description": "ISO 8601 creation timestamp"
|
|
62429
|
+
},
|
|
62430
|
+
"updatedAt": {
|
|
62431
|
+
"type": "string",
|
|
62432
|
+
"description": "ISO 8601 update timestamp"
|
|
62433
|
+
},
|
|
62434
|
+
"status": {
|
|
62435
|
+
"type": "string",
|
|
62436
|
+
"description": "Application status (Active, Hired, Archived, Lead)"
|
|
62437
|
+
},
|
|
62438
|
+
"candidateId": {
|
|
62439
|
+
"type": "string",
|
|
62440
|
+
"nullable": true,
|
|
62441
|
+
"description": "Candidate ID"
|
|
62442
|
+
},
|
|
62443
|
+
"jobId": {
|
|
62444
|
+
"type": "string",
|
|
62445
|
+
"nullable": true,
|
|
62446
|
+
"description": "Job ID"
|
|
62447
|
+
},
|
|
62448
|
+
"currentInterviewStage": {
|
|
62449
|
+
"type": "object",
|
|
62450
|
+
"properties": {
|
|
62451
|
+
"id": {
|
|
62452
|
+
"type": "string",
|
|
62453
|
+
"description": "Interview stage ID (UUID)"
|
|
62454
|
+
},
|
|
62455
|
+
"title": {
|
|
62456
|
+
"type": "string",
|
|
62457
|
+
"description": "Stage title"
|
|
62458
|
+
},
|
|
62459
|
+
"type": {
|
|
62460
|
+
"type": "string",
|
|
62461
|
+
"description": "Stage type (e.g., PreInterviewScreen, IndividualInterview)"
|
|
62462
|
+
},
|
|
62463
|
+
"orderInInterviewPlan": {
|
|
62464
|
+
"type": "number",
|
|
62465
|
+
"description": "Order in the interview plan"
|
|
62466
|
+
},
|
|
62467
|
+
"interviewPlanId": {
|
|
62468
|
+
"type": "string",
|
|
62469
|
+
"description": "Interview plan ID"
|
|
62470
|
+
}
|
|
62471
|
+
},
|
|
62472
|
+
"required": [
|
|
62473
|
+
"id",
|
|
62474
|
+
"title"
|
|
62475
|
+
],
|
|
62476
|
+
"additionalProperties": false,
|
|
62477
|
+
"description": "Current interview stage",
|
|
62478
|
+
"nullable": true
|
|
62479
|
+
},
|
|
62480
|
+
"source": {
|
|
62481
|
+
"nullable": true,
|
|
62482
|
+
"description": "Application source"
|
|
62483
|
+
},
|
|
62484
|
+
"archiveReason": {
|
|
62485
|
+
"nullable": true,
|
|
62486
|
+
"description": "Archive reason if archived"
|
|
62487
|
+
},
|
|
62488
|
+
"customFields": {
|
|
62489
|
+
"type": "array",
|
|
62490
|
+
"items": {
|
|
62491
|
+
"type": "object",
|
|
62492
|
+
"properties": {
|
|
62493
|
+
"id": {
|
|
62494
|
+
"type": "string",
|
|
62495
|
+
"description": "Custom field ID"
|
|
62496
|
+
},
|
|
62497
|
+
"title": {
|
|
62498
|
+
"type": "string",
|
|
62499
|
+
"description": "Custom field title"
|
|
62500
|
+
},
|
|
62501
|
+
"value": {
|
|
62502
|
+
"description": "Custom field value"
|
|
62503
|
+
},
|
|
62504
|
+
"isPrivate": {
|
|
62505
|
+
"type": "boolean",
|
|
62506
|
+
"description": "Whether the field is private"
|
|
62507
|
+
}
|
|
62508
|
+
},
|
|
62509
|
+
"required": [
|
|
62510
|
+
"id",
|
|
62511
|
+
"title"
|
|
62512
|
+
],
|
|
62513
|
+
"additionalProperties": false,
|
|
62514
|
+
"description": "Custom field information"
|
|
62515
|
+
},
|
|
62516
|
+
"description": "Custom field values"
|
|
62517
|
+
},
|
|
62518
|
+
"hiringTeam": {
|
|
62519
|
+
"type": "array",
|
|
62520
|
+
"items": {
|
|
62521
|
+
"type": "object",
|
|
62522
|
+
"properties": {
|
|
62523
|
+
"userId": {
|
|
62524
|
+
"type": "string",
|
|
62525
|
+
"description": "Team member user ID"
|
|
62526
|
+
},
|
|
62527
|
+
"role": {
|
|
62528
|
+
"type": "string",
|
|
62529
|
+
"description": "Role in hiring team"
|
|
62530
|
+
},
|
|
62531
|
+
"email": {
|
|
62532
|
+
"type": "string",
|
|
62533
|
+
"description": "Team member email"
|
|
62534
|
+
},
|
|
62535
|
+
"firstName": {
|
|
62536
|
+
"type": "string",
|
|
62537
|
+
"description": "First name"
|
|
62538
|
+
},
|
|
62539
|
+
"lastName": {
|
|
62540
|
+
"type": "string",
|
|
62541
|
+
"description": "Last name"
|
|
62542
|
+
}
|
|
62543
|
+
},
|
|
62544
|
+
"required": [
|
|
62545
|
+
"userId",
|
|
62546
|
+
"role"
|
|
62547
|
+
],
|
|
62548
|
+
"additionalProperties": false
|
|
62549
|
+
},
|
|
62550
|
+
"description": "Hiring team members"
|
|
62551
|
+
}
|
|
62552
|
+
},
|
|
62553
|
+
"required": [
|
|
62554
|
+
"id"
|
|
62555
|
+
],
|
|
62556
|
+
"additionalProperties": false,
|
|
62557
|
+
"description": "Created application"
|
|
62558
|
+
},
|
|
62559
|
+
"error": {
|
|
62560
|
+
"type": "string",
|
|
62561
|
+
"description": "Error message if operation failed"
|
|
62562
|
+
}
|
|
62563
|
+
},
|
|
62564
|
+
"required": [
|
|
62565
|
+
"operation",
|
|
62566
|
+
"success",
|
|
62567
|
+
"error"
|
|
62568
|
+
],
|
|
62569
|
+
"additionalProperties": false
|
|
62570
|
+
},
|
|
62571
|
+
{
|
|
62572
|
+
"type": "object",
|
|
62573
|
+
"properties": {
|
|
62574
|
+
"operation": {
|
|
62575
|
+
"type": "string",
|
|
62576
|
+
"enum": [
|
|
62577
|
+
"change_application_stage"
|
|
62578
|
+
],
|
|
62579
|
+
"description": "Change application stage operation"
|
|
62580
|
+
},
|
|
62581
|
+
"success": {
|
|
62582
|
+
"type": "boolean",
|
|
62583
|
+
"description": "Whether the operation was successful"
|
|
62584
|
+
},
|
|
62585
|
+
"application": {
|
|
62586
|
+
"type": "object",
|
|
62587
|
+
"properties": {
|
|
62588
|
+
"id": {
|
|
62589
|
+
"type": "string",
|
|
62590
|
+
"description": "Unique application identifier (UUID)"
|
|
62591
|
+
},
|
|
62592
|
+
"createdAt": {
|
|
62593
|
+
"type": "string",
|
|
62594
|
+
"description": "ISO 8601 creation timestamp"
|
|
62595
|
+
},
|
|
62596
|
+
"updatedAt": {
|
|
62597
|
+
"type": "string",
|
|
62598
|
+
"description": "ISO 8601 update timestamp"
|
|
62599
|
+
},
|
|
62600
|
+
"status": {
|
|
62601
|
+
"type": "string",
|
|
62602
|
+
"description": "Application status (Active, Hired, Archived, Lead)"
|
|
62603
|
+
},
|
|
62604
|
+
"candidateId": {
|
|
62605
|
+
"type": "string",
|
|
62606
|
+
"nullable": true,
|
|
62607
|
+
"description": "Candidate ID"
|
|
62608
|
+
},
|
|
62609
|
+
"jobId": {
|
|
62610
|
+
"type": "string",
|
|
62611
|
+
"nullable": true,
|
|
62612
|
+
"description": "Job ID"
|
|
62613
|
+
},
|
|
62614
|
+
"currentInterviewStage": {
|
|
62615
|
+
"type": "object",
|
|
62616
|
+
"properties": {
|
|
62617
|
+
"id": {
|
|
62618
|
+
"type": "string",
|
|
62619
|
+
"description": "Interview stage ID (UUID)"
|
|
62620
|
+
},
|
|
62621
|
+
"title": {
|
|
62622
|
+
"type": "string",
|
|
62623
|
+
"description": "Stage title"
|
|
62624
|
+
},
|
|
62625
|
+
"type": {
|
|
62626
|
+
"type": "string",
|
|
62627
|
+
"description": "Stage type (e.g., PreInterviewScreen, IndividualInterview)"
|
|
62628
|
+
},
|
|
62629
|
+
"orderInInterviewPlan": {
|
|
62630
|
+
"type": "number",
|
|
62631
|
+
"description": "Order in the interview plan"
|
|
62632
|
+
},
|
|
62633
|
+
"interviewPlanId": {
|
|
62634
|
+
"type": "string",
|
|
62635
|
+
"description": "Interview plan ID"
|
|
62636
|
+
}
|
|
62637
|
+
},
|
|
62638
|
+
"required": [
|
|
62639
|
+
"id",
|
|
62640
|
+
"title"
|
|
62641
|
+
],
|
|
62642
|
+
"additionalProperties": false,
|
|
62643
|
+
"description": "Current interview stage",
|
|
62644
|
+
"nullable": true
|
|
62645
|
+
},
|
|
62646
|
+
"source": {
|
|
62647
|
+
"nullable": true,
|
|
62648
|
+
"description": "Application source"
|
|
62649
|
+
},
|
|
62650
|
+
"archiveReason": {
|
|
62651
|
+
"nullable": true,
|
|
62652
|
+
"description": "Archive reason if archived"
|
|
62653
|
+
},
|
|
62654
|
+
"customFields": {
|
|
62655
|
+
"type": "array",
|
|
62656
|
+
"items": {
|
|
62657
|
+
"type": "object",
|
|
62658
|
+
"properties": {
|
|
62659
|
+
"id": {
|
|
62660
|
+
"type": "string",
|
|
62661
|
+
"description": "Custom field ID"
|
|
62662
|
+
},
|
|
62663
|
+
"title": {
|
|
62664
|
+
"type": "string",
|
|
62665
|
+
"description": "Custom field title"
|
|
62666
|
+
},
|
|
62667
|
+
"value": {
|
|
62668
|
+
"description": "Custom field value"
|
|
62669
|
+
},
|
|
62670
|
+
"isPrivate": {
|
|
62671
|
+
"type": "boolean",
|
|
62672
|
+
"description": "Whether the field is private"
|
|
62673
|
+
}
|
|
62674
|
+
},
|
|
62675
|
+
"required": [
|
|
62676
|
+
"id",
|
|
62677
|
+
"title"
|
|
62678
|
+
],
|
|
62679
|
+
"additionalProperties": false,
|
|
62680
|
+
"description": "Custom field information"
|
|
62681
|
+
},
|
|
62682
|
+
"description": "Custom field values"
|
|
62683
|
+
},
|
|
62684
|
+
"hiringTeam": {
|
|
62685
|
+
"type": "array",
|
|
62686
|
+
"items": {
|
|
62687
|
+
"type": "object",
|
|
62688
|
+
"properties": {
|
|
62689
|
+
"userId": {
|
|
62690
|
+
"type": "string",
|
|
62691
|
+
"description": "Team member user ID"
|
|
62692
|
+
},
|
|
62693
|
+
"role": {
|
|
62694
|
+
"type": "string",
|
|
62695
|
+
"description": "Role in hiring team"
|
|
62696
|
+
},
|
|
62697
|
+
"email": {
|
|
62698
|
+
"type": "string",
|
|
62699
|
+
"description": "Team member email"
|
|
62700
|
+
},
|
|
62701
|
+
"firstName": {
|
|
62702
|
+
"type": "string",
|
|
62703
|
+
"description": "First name"
|
|
62704
|
+
},
|
|
62705
|
+
"lastName": {
|
|
62706
|
+
"type": "string",
|
|
62707
|
+
"description": "Last name"
|
|
60289
62708
|
}
|
|
60290
62709
|
},
|
|
60291
62710
|
"required": [
|
|
60292
|
-
"
|
|
60293
|
-
"
|
|
62711
|
+
"userId",
|
|
62712
|
+
"role"
|
|
60294
62713
|
],
|
|
60295
|
-
"additionalProperties": false
|
|
60296
|
-
"description": "Custom field information"
|
|
62714
|
+
"additionalProperties": false
|
|
60297
62715
|
},
|
|
60298
|
-
"description": "
|
|
62716
|
+
"description": "Hiring team members"
|
|
60299
62717
|
}
|
|
60300
62718
|
},
|
|
60301
62719
|
"required": [
|
|
60302
|
-
"id"
|
|
60303
|
-
"name"
|
|
62720
|
+
"id"
|
|
60304
62721
|
],
|
|
60305
62722
|
"additionalProperties": false,
|
|
60306
|
-
"description": "
|
|
62723
|
+
"description": "Updated application"
|
|
60307
62724
|
},
|
|
60308
62725
|
"error": {
|
|
60309
62726
|
"type": "string",
|
|
@@ -60323,9 +62740,9 @@
|
|
|
60323
62740
|
"operation": {
|
|
60324
62741
|
"type": "string",
|
|
60325
62742
|
"enum": [
|
|
60326
|
-
"
|
|
62743
|
+
"update_candidate"
|
|
60327
62744
|
],
|
|
60328
|
-
"description": "
|
|
62745
|
+
"description": "Update candidate operation"
|
|
60329
62746
|
},
|
|
60330
62747
|
"success": {
|
|
60331
62748
|
"type": "boolean",
|
|
@@ -60446,11 +62863,83 @@
|
|
|
60446
62863
|
"name"
|
|
60447
62864
|
],
|
|
60448
62865
|
"additionalProperties": false,
|
|
60449
|
-
"description": "
|
|
62866
|
+
"description": "Updated candidate"
|
|
60450
62867
|
},
|
|
60451
|
-
"
|
|
62868
|
+
"error": {
|
|
62869
|
+
"type": "string",
|
|
62870
|
+
"description": "Error message if operation failed"
|
|
62871
|
+
}
|
|
62872
|
+
},
|
|
62873
|
+
"required": [
|
|
62874
|
+
"operation",
|
|
62875
|
+
"success",
|
|
62876
|
+
"error"
|
|
62877
|
+
],
|
|
62878
|
+
"additionalProperties": false
|
|
62879
|
+
},
|
|
62880
|
+
{
|
|
62881
|
+
"type": "object",
|
|
62882
|
+
"properties": {
|
|
62883
|
+
"operation": {
|
|
62884
|
+
"type": "string",
|
|
62885
|
+
"enum": [
|
|
62886
|
+
"create_note"
|
|
62887
|
+
],
|
|
62888
|
+
"description": "Create note operation"
|
|
62889
|
+
},
|
|
62890
|
+
"success": {
|
|
60452
62891
|
"type": "boolean",
|
|
60453
|
-
"description": "
|
|
62892
|
+
"description": "Whether the operation was successful"
|
|
62893
|
+
},
|
|
62894
|
+
"note": {
|
|
62895
|
+
"type": "object",
|
|
62896
|
+
"properties": {
|
|
62897
|
+
"id": {
|
|
62898
|
+
"type": "string",
|
|
62899
|
+
"description": "Note ID (UUID)"
|
|
62900
|
+
},
|
|
62901
|
+
"createdAt": {
|
|
62902
|
+
"type": "string",
|
|
62903
|
+
"description": "ISO 8601 creation timestamp"
|
|
62904
|
+
},
|
|
62905
|
+
"content": {
|
|
62906
|
+
"type": "string",
|
|
62907
|
+
"description": "Note content (HTML)"
|
|
62908
|
+
},
|
|
62909
|
+
"author": {
|
|
62910
|
+
"type": "object",
|
|
62911
|
+
"properties": {
|
|
62912
|
+
"id": {
|
|
62913
|
+
"type": "string",
|
|
62914
|
+
"description": "Author user ID"
|
|
62915
|
+
},
|
|
62916
|
+
"firstName": {
|
|
62917
|
+
"type": "string",
|
|
62918
|
+
"description": "Author first name"
|
|
62919
|
+
},
|
|
62920
|
+
"lastName": {
|
|
62921
|
+
"type": "string",
|
|
62922
|
+
"description": "Author last name"
|
|
62923
|
+
},
|
|
62924
|
+
"email": {
|
|
62925
|
+
"type": "string",
|
|
62926
|
+
"description": "Author email"
|
|
62927
|
+
}
|
|
62928
|
+
},
|
|
62929
|
+
"required": [
|
|
62930
|
+
"id"
|
|
62931
|
+
],
|
|
62932
|
+
"additionalProperties": false,
|
|
62933
|
+
"nullable": true,
|
|
62934
|
+
"description": "Note author"
|
|
62935
|
+
}
|
|
62936
|
+
},
|
|
62937
|
+
"required": [
|
|
62938
|
+
"id",
|
|
62939
|
+
"content"
|
|
62940
|
+
],
|
|
62941
|
+
"additionalProperties": false,
|
|
62942
|
+
"description": "Created note"
|
|
60454
62943
|
},
|
|
60455
62944
|
"error": {
|
|
60456
62945
|
"type": "string",
|
|
@@ -60470,134 +62959,120 @@
|
|
|
60470
62959
|
"operation": {
|
|
60471
62960
|
"type": "string",
|
|
60472
62961
|
"enum": [
|
|
60473
|
-
"
|
|
62962
|
+
"list_notes"
|
|
60474
62963
|
],
|
|
60475
|
-
"description": "
|
|
62964
|
+
"description": "List notes operation"
|
|
60476
62965
|
},
|
|
60477
62966
|
"success": {
|
|
60478
62967
|
"type": "boolean",
|
|
60479
62968
|
"description": "Whether the operation was successful"
|
|
60480
62969
|
},
|
|
60481
|
-
"
|
|
62970
|
+
"notes": {
|
|
60482
62971
|
"type": "array",
|
|
60483
62972
|
"items": {
|
|
60484
62973
|
"type": "object",
|
|
60485
62974
|
"properties": {
|
|
60486
62975
|
"id": {
|
|
60487
62976
|
"type": "string",
|
|
60488
|
-
"description": "
|
|
62977
|
+
"description": "Note ID (UUID)"
|
|
60489
62978
|
},
|
|
60490
62979
|
"createdAt": {
|
|
60491
62980
|
"type": "string",
|
|
60492
62981
|
"description": "ISO 8601 creation timestamp"
|
|
60493
62982
|
},
|
|
60494
|
-
"
|
|
60495
|
-
"type": "string",
|
|
60496
|
-
"description": "ISO 8601 update timestamp"
|
|
60497
|
-
},
|
|
60498
|
-
"name": {
|
|
62983
|
+
"content": {
|
|
60499
62984
|
"type": "string",
|
|
60500
|
-
"description": "
|
|
62985
|
+
"description": "Note content (HTML)"
|
|
60501
62986
|
},
|
|
60502
|
-
"
|
|
62987
|
+
"author": {
|
|
60503
62988
|
"type": "object",
|
|
60504
62989
|
"properties": {
|
|
60505
|
-
"
|
|
62990
|
+
"id": {
|
|
60506
62991
|
"type": "string",
|
|
60507
|
-
"description": "
|
|
62992
|
+
"description": "Author user ID"
|
|
60508
62993
|
},
|
|
60509
|
-
"
|
|
62994
|
+
"firstName": {
|
|
60510
62995
|
"type": "string",
|
|
60511
|
-
"
|
|
60512
|
-
"Personal",
|
|
60513
|
-
"Work",
|
|
60514
|
-
"Other"
|
|
60515
|
-
],
|
|
60516
|
-
"description": "Type of email"
|
|
62996
|
+
"description": "Author first name"
|
|
60517
62997
|
},
|
|
60518
|
-
"
|
|
60519
|
-
"type": "boolean",
|
|
60520
|
-
"description": "Whether this is the primary email"
|
|
60521
|
-
}
|
|
60522
|
-
},
|
|
60523
|
-
"required": [
|
|
60524
|
-
"value",
|
|
60525
|
-
"type",
|
|
60526
|
-
"isPrimary"
|
|
60527
|
-
],
|
|
60528
|
-
"additionalProperties": false,
|
|
60529
|
-
"description": "Primary email address",
|
|
60530
|
-
"nullable": true
|
|
60531
|
-
},
|
|
60532
|
-
"primaryPhoneNumber": {
|
|
60533
|
-
"type": "object",
|
|
60534
|
-
"properties": {
|
|
60535
|
-
"value": {
|
|
62998
|
+
"lastName": {
|
|
60536
62999
|
"type": "string",
|
|
60537
|
-
"description": "
|
|
63000
|
+
"description": "Author last name"
|
|
60538
63001
|
},
|
|
60539
|
-
"
|
|
63002
|
+
"email": {
|
|
60540
63003
|
"type": "string",
|
|
60541
|
-
"
|
|
60542
|
-
"Personal",
|
|
60543
|
-
"Work",
|
|
60544
|
-
"Other"
|
|
60545
|
-
],
|
|
60546
|
-
"description": "Type of phone"
|
|
60547
|
-
},
|
|
60548
|
-
"isPrimary": {
|
|
60549
|
-
"type": "boolean",
|
|
60550
|
-
"description": "Whether this is the primary phone"
|
|
63004
|
+
"description": "Author email"
|
|
60551
63005
|
}
|
|
60552
63006
|
},
|
|
60553
63007
|
"required": [
|
|
60554
|
-
"
|
|
60555
|
-
"type",
|
|
60556
|
-
"isPrimary"
|
|
63008
|
+
"id"
|
|
60557
63009
|
],
|
|
60558
63010
|
"additionalProperties": false,
|
|
60559
|
-
"
|
|
60560
|
-
"
|
|
63011
|
+
"nullable": true,
|
|
63012
|
+
"description": "Note author"
|
|
63013
|
+
}
|
|
63014
|
+
},
|
|
63015
|
+
"required": [
|
|
63016
|
+
"id",
|
|
63017
|
+
"content"
|
|
63018
|
+
],
|
|
63019
|
+
"additionalProperties": false,
|
|
63020
|
+
"description": "Candidate note"
|
|
63021
|
+
},
|
|
63022
|
+
"description": "List of notes"
|
|
63023
|
+
},
|
|
63024
|
+
"error": {
|
|
63025
|
+
"type": "string",
|
|
63026
|
+
"description": "Error message if operation failed"
|
|
63027
|
+
}
|
|
63028
|
+
},
|
|
63029
|
+
"required": [
|
|
63030
|
+
"operation",
|
|
63031
|
+
"success",
|
|
63032
|
+
"error"
|
|
63033
|
+
],
|
|
63034
|
+
"additionalProperties": false
|
|
63035
|
+
},
|
|
63036
|
+
{
|
|
63037
|
+
"type": "object",
|
|
63038
|
+
"properties": {
|
|
63039
|
+
"operation": {
|
|
63040
|
+
"type": "string",
|
|
63041
|
+
"enum": [
|
|
63042
|
+
"list_sources"
|
|
63043
|
+
],
|
|
63044
|
+
"description": "List sources operation"
|
|
63045
|
+
},
|
|
63046
|
+
"success": {
|
|
63047
|
+
"type": "boolean",
|
|
63048
|
+
"description": "Whether the operation was successful"
|
|
63049
|
+
},
|
|
63050
|
+
"sources": {
|
|
63051
|
+
"type": "array",
|
|
63052
|
+
"items": {
|
|
63053
|
+
"type": "object",
|
|
63054
|
+
"properties": {
|
|
63055
|
+
"id": {
|
|
63056
|
+
"type": "string",
|
|
63057
|
+
"description": "Source ID (UUID)"
|
|
60561
63058
|
},
|
|
60562
|
-
"
|
|
60563
|
-
"type": "
|
|
60564
|
-
"
|
|
60565
|
-
|
|
60566
|
-
|
|
60567
|
-
|
|
60568
|
-
|
|
60569
|
-
"description": "Custom field ID"
|
|
60570
|
-
},
|
|
60571
|
-
"title": {
|
|
60572
|
-
"type": "string",
|
|
60573
|
-
"description": "Custom field title"
|
|
60574
|
-
},
|
|
60575
|
-
"value": {
|
|
60576
|
-
"description": "Custom field value"
|
|
60577
|
-
},
|
|
60578
|
-
"isPrivate": {
|
|
60579
|
-
"type": "boolean",
|
|
60580
|
-
"description": "Whether the field is private"
|
|
60581
|
-
}
|
|
60582
|
-
},
|
|
60583
|
-
"required": [
|
|
60584
|
-
"id",
|
|
60585
|
-
"title"
|
|
60586
|
-
],
|
|
60587
|
-
"additionalProperties": false,
|
|
60588
|
-
"description": "Custom field information"
|
|
60589
|
-
},
|
|
60590
|
-
"description": "Custom field values"
|
|
63059
|
+
"title": {
|
|
63060
|
+
"type": "string",
|
|
63061
|
+
"description": "Source title"
|
|
63062
|
+
},
|
|
63063
|
+
"isArchived": {
|
|
63064
|
+
"type": "boolean",
|
|
63065
|
+
"description": "Whether the source is archived"
|
|
60591
63066
|
}
|
|
60592
63067
|
},
|
|
60593
63068
|
"required": [
|
|
60594
63069
|
"id",
|
|
60595
|
-
"
|
|
63070
|
+
"title"
|
|
60596
63071
|
],
|
|
60597
63072
|
"additionalProperties": false,
|
|
60598
|
-
"description": "
|
|
63073
|
+
"description": "Candidate source"
|
|
60599
63074
|
},
|
|
60600
|
-
"description": "List of
|
|
63075
|
+
"description": "List of sources"
|
|
60601
63076
|
},
|
|
60602
63077
|
"error": {
|
|
60603
63078
|
"type": "string",
|
|
@@ -60617,130 +63092,96 @@
|
|
|
60617
63092
|
"operation": {
|
|
60618
63093
|
"type": "string",
|
|
60619
63094
|
"enum": [
|
|
60620
|
-
"
|
|
63095
|
+
"list_interview_stages"
|
|
60621
63096
|
],
|
|
60622
|
-
"description": "
|
|
63097
|
+
"description": "List interview stages operation"
|
|
60623
63098
|
},
|
|
60624
63099
|
"success": {
|
|
60625
63100
|
"type": "boolean",
|
|
60626
63101
|
"description": "Whether the operation was successful"
|
|
60627
63102
|
},
|
|
60628
|
-
"
|
|
63103
|
+
"interview_stages": {
|
|
63104
|
+
"type": "array",
|
|
63105
|
+
"items": {
|
|
63106
|
+
"type": "object",
|
|
63107
|
+
"properties": {
|
|
63108
|
+
"id": {
|
|
63109
|
+
"type": "string",
|
|
63110
|
+
"description": "Interview stage ID (UUID)"
|
|
63111
|
+
},
|
|
63112
|
+
"title": {
|
|
63113
|
+
"type": "string",
|
|
63114
|
+
"description": "Stage title"
|
|
63115
|
+
},
|
|
63116
|
+
"type": {
|
|
63117
|
+
"type": "string",
|
|
63118
|
+
"description": "Stage type (e.g., PreInterviewScreen, IndividualInterview)"
|
|
63119
|
+
},
|
|
63120
|
+
"orderInInterviewPlan": {
|
|
63121
|
+
"type": "number",
|
|
63122
|
+
"description": "Order in the interview plan"
|
|
63123
|
+
},
|
|
63124
|
+
"interviewPlanId": {
|
|
63125
|
+
"type": "string",
|
|
63126
|
+
"description": "Interview plan ID"
|
|
63127
|
+
}
|
|
63128
|
+
},
|
|
63129
|
+
"required": [
|
|
63130
|
+
"id",
|
|
63131
|
+
"title"
|
|
63132
|
+
],
|
|
63133
|
+
"additionalProperties": false,
|
|
63134
|
+
"description": "Interview stage"
|
|
63135
|
+
},
|
|
63136
|
+
"description": "List of interview stages"
|
|
63137
|
+
},
|
|
63138
|
+
"error": {
|
|
63139
|
+
"type": "string",
|
|
63140
|
+
"description": "Error message if operation failed"
|
|
63141
|
+
}
|
|
63142
|
+
},
|
|
63143
|
+
"required": [
|
|
63144
|
+
"operation",
|
|
63145
|
+
"success",
|
|
63146
|
+
"error"
|
|
63147
|
+
],
|
|
63148
|
+
"additionalProperties": false
|
|
63149
|
+
},
|
|
63150
|
+
{
|
|
63151
|
+
"type": "object",
|
|
63152
|
+
"properties": {
|
|
63153
|
+
"operation": {
|
|
63154
|
+
"type": "string",
|
|
63155
|
+
"enum": [
|
|
63156
|
+
"get_file_url"
|
|
63157
|
+
],
|
|
63158
|
+
"description": "Get file URL operation"
|
|
63159
|
+
},
|
|
63160
|
+
"success": {
|
|
63161
|
+
"type": "boolean",
|
|
63162
|
+
"description": "Whether the operation was successful"
|
|
63163
|
+
},
|
|
63164
|
+
"file": {
|
|
60629
63165
|
"type": "object",
|
|
60630
63166
|
"properties": {
|
|
60631
63167
|
"id": {
|
|
60632
63168
|
"type": "string",
|
|
60633
|
-
"description": "
|
|
60634
|
-
},
|
|
60635
|
-
"createdAt": {
|
|
60636
|
-
"type": "string",
|
|
60637
|
-
"description": "ISO 8601 creation timestamp"
|
|
60638
|
-
},
|
|
60639
|
-
"updatedAt": {
|
|
60640
|
-
"type": "string",
|
|
60641
|
-
"description": "ISO 8601 update timestamp"
|
|
63169
|
+
"description": "File ID"
|
|
60642
63170
|
},
|
|
60643
63171
|
"name": {
|
|
60644
63172
|
"type": "string",
|
|
60645
|
-
"description": "
|
|
60646
|
-
},
|
|
60647
|
-
"primaryEmailAddress": {
|
|
60648
|
-
"type": "object",
|
|
60649
|
-
"properties": {
|
|
60650
|
-
"value": {
|
|
60651
|
-
"type": "string",
|
|
60652
|
-
"description": "Email address value"
|
|
60653
|
-
},
|
|
60654
|
-
"type": {
|
|
60655
|
-
"type": "string",
|
|
60656
|
-
"enum": [
|
|
60657
|
-
"Personal",
|
|
60658
|
-
"Work",
|
|
60659
|
-
"Other"
|
|
60660
|
-
],
|
|
60661
|
-
"description": "Type of email"
|
|
60662
|
-
},
|
|
60663
|
-
"isPrimary": {
|
|
60664
|
-
"type": "boolean",
|
|
60665
|
-
"description": "Whether this is the primary email"
|
|
60666
|
-
}
|
|
60667
|
-
},
|
|
60668
|
-
"required": [
|
|
60669
|
-
"value",
|
|
60670
|
-
"type",
|
|
60671
|
-
"isPrimary"
|
|
60672
|
-
],
|
|
60673
|
-
"additionalProperties": false,
|
|
60674
|
-
"description": "Primary email address",
|
|
60675
|
-
"nullable": true
|
|
60676
|
-
},
|
|
60677
|
-
"primaryPhoneNumber": {
|
|
60678
|
-
"type": "object",
|
|
60679
|
-
"properties": {
|
|
60680
|
-
"value": {
|
|
60681
|
-
"type": "string",
|
|
60682
|
-
"description": "Phone number value"
|
|
60683
|
-
},
|
|
60684
|
-
"type": {
|
|
60685
|
-
"type": "string",
|
|
60686
|
-
"enum": [
|
|
60687
|
-
"Personal",
|
|
60688
|
-
"Work",
|
|
60689
|
-
"Other"
|
|
60690
|
-
],
|
|
60691
|
-
"description": "Type of phone"
|
|
60692
|
-
},
|
|
60693
|
-
"isPrimary": {
|
|
60694
|
-
"type": "boolean",
|
|
60695
|
-
"description": "Whether this is the primary phone"
|
|
60696
|
-
}
|
|
60697
|
-
},
|
|
60698
|
-
"required": [
|
|
60699
|
-
"value",
|
|
60700
|
-
"type",
|
|
60701
|
-
"isPrimary"
|
|
60702
|
-
],
|
|
60703
|
-
"additionalProperties": false,
|
|
60704
|
-
"description": "Primary phone number",
|
|
60705
|
-
"nullable": true
|
|
63173
|
+
"description": "File name"
|
|
60706
63174
|
},
|
|
60707
|
-
"
|
|
60708
|
-
"type": "
|
|
60709
|
-
"
|
|
60710
|
-
"type": "object",
|
|
60711
|
-
"properties": {
|
|
60712
|
-
"id": {
|
|
60713
|
-
"type": "string",
|
|
60714
|
-
"description": "Custom field ID"
|
|
60715
|
-
},
|
|
60716
|
-
"title": {
|
|
60717
|
-
"type": "string",
|
|
60718
|
-
"description": "Custom field title"
|
|
60719
|
-
},
|
|
60720
|
-
"value": {
|
|
60721
|
-
"description": "Custom field value"
|
|
60722
|
-
},
|
|
60723
|
-
"isPrivate": {
|
|
60724
|
-
"type": "boolean",
|
|
60725
|
-
"description": "Whether the field is private"
|
|
60726
|
-
}
|
|
60727
|
-
},
|
|
60728
|
-
"required": [
|
|
60729
|
-
"id",
|
|
60730
|
-
"title"
|
|
60731
|
-
],
|
|
60732
|
-
"additionalProperties": false,
|
|
60733
|
-
"description": "Custom field information"
|
|
60734
|
-
},
|
|
60735
|
-
"description": "Custom field values"
|
|
63175
|
+
"url": {
|
|
63176
|
+
"type": "string",
|
|
63177
|
+
"description": "Temporary download URL"
|
|
60736
63178
|
}
|
|
60737
63179
|
},
|
|
60738
63180
|
"required": [
|
|
60739
|
-
"
|
|
60740
|
-
"name"
|
|
63181
|
+
"url"
|
|
60741
63182
|
],
|
|
60742
63183
|
"additionalProperties": false,
|
|
60743
|
-
"description": "
|
|
63184
|
+
"description": "File info with download URL"
|
|
60744
63185
|
},
|
|
60745
63186
|
"error": {
|
|
60746
63187
|
"type": "string",
|
|
@@ -60760,30 +63201,30 @@
|
|
|
60760
63201
|
"operation": {
|
|
60761
63202
|
"type": "string",
|
|
60762
63203
|
"enum": [
|
|
60763
|
-
"
|
|
63204
|
+
"list_projects"
|
|
60764
63205
|
],
|
|
60765
|
-
"description": "List
|
|
63206
|
+
"description": "List projects operation"
|
|
60766
63207
|
},
|
|
60767
63208
|
"success": {
|
|
60768
63209
|
"type": "boolean",
|
|
60769
63210
|
"description": "Whether the operation was successful"
|
|
60770
63211
|
},
|
|
60771
|
-
"
|
|
63212
|
+
"projects": {
|
|
60772
63213
|
"type": "array",
|
|
60773
63214
|
"items": {
|
|
60774
63215
|
"type": "object",
|
|
60775
63216
|
"properties": {
|
|
60776
63217
|
"id": {
|
|
60777
63218
|
"type": "string",
|
|
60778
|
-
"description": "
|
|
63219
|
+
"description": "Project ID (UUID)"
|
|
60779
63220
|
},
|
|
60780
63221
|
"title": {
|
|
60781
63222
|
"type": "string",
|
|
60782
|
-
"description": "
|
|
63223
|
+
"description": "Project title"
|
|
60783
63224
|
},
|
|
60784
63225
|
"isArchived": {
|
|
60785
63226
|
"type": "boolean",
|
|
60786
|
-
"description": "Whether the
|
|
63227
|
+
"description": "Whether the project is archived"
|
|
60787
63228
|
}
|
|
60788
63229
|
},
|
|
60789
63230
|
"required": [
|
|
@@ -60791,9 +63232,9 @@
|
|
|
60791
63232
|
"title"
|
|
60792
63233
|
],
|
|
60793
63234
|
"additionalProperties": false,
|
|
60794
|
-
"description": "
|
|
63235
|
+
"description": "Ashby project"
|
|
60795
63236
|
},
|
|
60796
|
-
"description": "List of
|
|
63237
|
+
"description": "List of projects"
|
|
60797
63238
|
},
|
|
60798
63239
|
"error": {
|
|
60799
63240
|
"type": "string",
|
|
@@ -60813,28 +63254,28 @@
|
|
|
60813
63254
|
"operation": {
|
|
60814
63255
|
"type": "string",
|
|
60815
63256
|
"enum": [
|
|
60816
|
-
"
|
|
63257
|
+
"get_project"
|
|
60817
63258
|
],
|
|
60818
|
-
"description": "
|
|
63259
|
+
"description": "Get project operation"
|
|
60819
63260
|
},
|
|
60820
63261
|
"success": {
|
|
60821
63262
|
"type": "boolean",
|
|
60822
63263
|
"description": "Whether the operation was successful"
|
|
60823
63264
|
},
|
|
60824
|
-
"
|
|
63265
|
+
"project": {
|
|
60825
63266
|
"type": "object",
|
|
60826
63267
|
"properties": {
|
|
60827
63268
|
"id": {
|
|
60828
63269
|
"type": "string",
|
|
60829
|
-
"description": "
|
|
63270
|
+
"description": "Project ID (UUID)"
|
|
60830
63271
|
},
|
|
60831
63272
|
"title": {
|
|
60832
63273
|
"type": "string",
|
|
60833
|
-
"description": "
|
|
63274
|
+
"description": "Project title"
|
|
60834
63275
|
},
|
|
60835
63276
|
"isArchived": {
|
|
60836
63277
|
"type": "boolean",
|
|
60837
|
-
"description": "Whether the
|
|
63278
|
+
"description": "Whether the project is archived"
|
|
60838
63279
|
}
|
|
60839
63280
|
},
|
|
60840
63281
|
"required": [
|
|
@@ -60842,7 +63283,7 @@
|
|
|
60842
63283
|
"title"
|
|
60843
63284
|
],
|
|
60844
63285
|
"additionalProperties": false,
|
|
60845
|
-
"description": "
|
|
63286
|
+
"description": "Project details"
|
|
60846
63287
|
},
|
|
60847
63288
|
"error": {
|
|
60848
63289
|
"type": "string",
|
|
@@ -60862,96 +63303,92 @@
|
|
|
60862
63303
|
"operation": {
|
|
60863
63304
|
"type": "string",
|
|
60864
63305
|
"enum": [
|
|
60865
|
-
"
|
|
63306
|
+
"list_candidate_projects"
|
|
60866
63307
|
],
|
|
60867
|
-
"description": "List
|
|
63308
|
+
"description": "List candidate projects operation"
|
|
60868
63309
|
},
|
|
60869
63310
|
"success": {
|
|
60870
63311
|
"type": "boolean",
|
|
60871
63312
|
"description": "Whether the operation was successful"
|
|
60872
63313
|
},
|
|
60873
|
-
"
|
|
63314
|
+
"projects": {
|
|
60874
63315
|
"type": "array",
|
|
60875
63316
|
"items": {
|
|
60876
63317
|
"type": "object",
|
|
60877
63318
|
"properties": {
|
|
60878
63319
|
"id": {
|
|
60879
63320
|
"type": "string",
|
|
60880
|
-
"description": "
|
|
60881
|
-
},
|
|
60882
|
-
"isPrivate": {
|
|
60883
|
-
"type": "boolean",
|
|
60884
|
-
"description": "Whether the field is private"
|
|
63321
|
+
"description": "Project ID (UUID)"
|
|
60885
63322
|
},
|
|
60886
63323
|
"title": {
|
|
60887
63324
|
"type": "string",
|
|
60888
|
-
"description": "
|
|
60889
|
-
},
|
|
60890
|
-
"objectType": {
|
|
60891
|
-
"type": "string",
|
|
60892
|
-
"description": "Object type this field applies to (e.g., Application, Candidate)"
|
|
63325
|
+
"description": "Project title"
|
|
60893
63326
|
},
|
|
60894
63327
|
"isArchived": {
|
|
60895
63328
|
"type": "boolean",
|
|
60896
|
-
"description": "Whether the
|
|
60897
|
-
},
|
|
60898
|
-
"fieldType": {
|
|
60899
|
-
"type": "string",
|
|
60900
|
-
"description": "Type of field (e.g., MultiValueSelect, String, Number)"
|
|
60901
|
-
},
|
|
60902
|
-
"selectableValues": {
|
|
60903
|
-
"type": "array",
|
|
60904
|
-
"items": {
|
|
60905
|
-
"type": "object",
|
|
60906
|
-
"properties": {
|
|
60907
|
-
"label": {
|
|
60908
|
-
"type": "string",
|
|
60909
|
-
"description": "Display label for the value"
|
|
60910
|
-
},
|
|
60911
|
-
"value": {
|
|
60912
|
-
"type": "string",
|
|
60913
|
-
"description": "Value identifier"
|
|
60914
|
-
},
|
|
60915
|
-
"isArchived": {
|
|
60916
|
-
"type": "boolean",
|
|
60917
|
-
"description": "Whether the value is archived"
|
|
60918
|
-
}
|
|
60919
|
-
},
|
|
60920
|
-
"required": [
|
|
60921
|
-
"label",
|
|
60922
|
-
"value",
|
|
60923
|
-
"isArchived"
|
|
60924
|
-
],
|
|
60925
|
-
"additionalProperties": false,
|
|
60926
|
-
"description": "Selectable value for custom field"
|
|
60927
|
-
},
|
|
60928
|
-
"description": "Available values for select-type fields"
|
|
63329
|
+
"description": "Whether the project is archived"
|
|
60929
63330
|
}
|
|
60930
63331
|
},
|
|
60931
63332
|
"required": [
|
|
60932
63333
|
"id",
|
|
60933
|
-
"
|
|
60934
|
-
"title",
|
|
60935
|
-
"objectType",
|
|
60936
|
-
"isArchived",
|
|
60937
|
-
"fieldType"
|
|
63334
|
+
"title"
|
|
60938
63335
|
],
|
|
60939
63336
|
"additionalProperties": false,
|
|
60940
|
-
"description": "
|
|
63337
|
+
"description": "Ashby project"
|
|
60941
63338
|
},
|
|
60942
|
-
"description": "
|
|
63339
|
+
"description": "Projects the candidate belongs to"
|
|
60943
63340
|
},
|
|
60944
|
-
"
|
|
63341
|
+
"error": {
|
|
60945
63342
|
"type": "string",
|
|
60946
|
-
"description": "
|
|
63343
|
+
"description": "Error message if operation failed"
|
|
63344
|
+
}
|
|
63345
|
+
},
|
|
63346
|
+
"required": [
|
|
63347
|
+
"operation",
|
|
63348
|
+
"success",
|
|
63349
|
+
"error"
|
|
63350
|
+
],
|
|
63351
|
+
"additionalProperties": false
|
|
63352
|
+
},
|
|
63353
|
+
{
|
|
63354
|
+
"type": "object",
|
|
63355
|
+
"properties": {
|
|
63356
|
+
"operation": {
|
|
63357
|
+
"type": "string",
|
|
63358
|
+
"enum": [
|
|
63359
|
+
"add_candidate_to_project"
|
|
63360
|
+
],
|
|
63361
|
+
"description": "Add candidate to project operation"
|
|
60947
63362
|
},
|
|
60948
|
-
"
|
|
63363
|
+
"success": {
|
|
60949
63364
|
"type": "boolean",
|
|
60950
|
-
"description": "Whether
|
|
63365
|
+
"description": "Whether the operation was successful"
|
|
60951
63366
|
},
|
|
60952
|
-
"
|
|
63367
|
+
"error": {
|
|
60953
63368
|
"type": "string",
|
|
60954
|
-
"description": "
|
|
63369
|
+
"description": "Error message if operation failed"
|
|
63370
|
+
}
|
|
63371
|
+
},
|
|
63372
|
+
"required": [
|
|
63373
|
+
"operation",
|
|
63374
|
+
"success",
|
|
63375
|
+
"error"
|
|
63376
|
+
],
|
|
63377
|
+
"additionalProperties": false
|
|
63378
|
+
},
|
|
63379
|
+
{
|
|
63380
|
+
"type": "object",
|
|
63381
|
+
"properties": {
|
|
63382
|
+
"operation": {
|
|
63383
|
+
"type": "string",
|
|
63384
|
+
"enum": [
|
|
63385
|
+
"remove_candidate_from_project"
|
|
63386
|
+
],
|
|
63387
|
+
"description": "Remove candidate from project operation"
|
|
63388
|
+
},
|
|
63389
|
+
"success": {
|
|
63390
|
+
"type": "boolean",
|
|
63391
|
+
"description": "Whether the operation was successful"
|
|
60955
63392
|
},
|
|
60956
63393
|
"error": {
|
|
60957
63394
|
"type": "string",
|
|
@@ -60967,7 +63404,7 @@
|
|
|
60967
63404
|
}
|
|
60968
63405
|
]
|
|
60969
63406
|
},
|
|
60970
|
-
"usageExample": "// List Candidates example\nconst ashby_list_candidates = new AshbyBubble({\n operation: \"list_candidates\", // List all candidates with optional filtering\n limit: 100 // default, // Maximum number of candidates to return (1-100)\n cursor: \"example string\", // Pagination cursor for fetching subsequent pages\n status: \"Hired\" // options: \"Hired\", \"Archived\", \"Active\", \"Lead\", // Filter candidates by application status\n job_id: \"example string\", // Filter candidates by specific job ID\n created_after: 42, // Unix timestamp in milliseconds to filter candidates created after this time\n});\n\nconst result = await ashby_list_candidates.action();\n// outputSchema for result.data when operation === 'list_candidates':\n// {\n// operation: \"list_candidates\" // List candidates operation,\n// success: boolean // Whether the operation was successful,\n// candidates: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, emailAddresses: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email }[] | undefined // All email addresses, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, phoneNumbers: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone }[] | undefined // All phone numbers, socialLinks: { url: string // Social link URL, type: string // Type of social link (e.g., LinkedIn, GitHub) }[] | undefined // Social media links, tags: { id: string // Tag ID, title: string // Tag title, isArchived: boolean | undefined // Whether the tag is archived }[] | undefined // Tags assigned to candidate, position: string | undefined | null // Current position, company: string | undefined | null // Current company, school: string | undefined | null // School, applicationIds: string[] | undefined // IDs of applications for this candidate, resumeFileHandle: { id: string // File ID, name: string // File name, handle: string // File handle for download } | undefined | null // Resume file handle, fileHandles: { id: string // File ID, name: string // File name, handle: string // File handle for download }[] | undefined // All file handles, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values }[] | undefined // List of candidates,\n// next_cursor: string | undefined // Cursor for fetching the next page of results,\n// more_data_available: boolean | undefined // Whether more data is available,\n// sync_token: string | undefined // Token for incremental sync,\n// error: string // Error message if operation failed\n// }\n\n\n// Get Candidate example\nconst ashby_get_candidate = new AshbyBubble({\n operation: \"get_candidate\", // Get detailed information about a specific candidate\n candidate_id: \"example string\", // UUID of the candidate to retrieve\n});\n\nconst result = await ashby_get_candidate.action();\n// outputSchema for result.data when operation === 'get_candidate':\n// {\n// operation: \"get_candidate\" // Get candidate operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Candidate details,\n// error: string // Error message if operation failed\n// }\n\n\n// Create Candidate example\nconst ashby_create_candidate = new AshbyBubble({\n operation: \"create_candidate\", // Create a new candidate\n name: \"example string\", // Candidate's full name (first and last name)\n emails: [{ email: \"example string\" // Email address, type: \"Personal\" // options: \"Personal\", \"Work\", \"Other\" // Type of email (Personal, Work, or Other) }], // Candidate's email addresses with type. The Personal email becomes the primary email, others become alternates.\n phone_number: \"example string\", // Candidate's primary phone number\n linkedin_url: \"example string\", // URL to the candidate's LinkedIn profile\n github_url: \"example string\", // URL to the candidate's GitHub profile\n website: \"example string\", // URL of the candidate's website\n source_id: \"example string\", // The source ID to set on the candidate\n credited_to_user_id: \"example string\", // The ID of the user the candidate will be credited to\n tag: \"example string\", // Optional tag to add to the candidate. Can be a tag ID (UUID) or tag name. If a name is provided, the tag will be created first.\n allow_duplicate_linkedin: false // default, // Whether to allow creating a candidate with a LinkedIn URL that already exists. When false (default), the existing candidate is returned instead of creating a duplicate.\n});\n\nconst result = await ashby_create_candidate.action();\n// outputSchema for result.data when operation === 'create_candidate':\n// {\n// operation: \"create_candidate\" // Create candidate operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Created candidate details (or existing candidate if duplicate was found),\n// duplicate: boolean | undefined // True if a candidate with the same LinkedIn profile already existed and was returned instead of creating a new one,\n// error: string // Error message if operation failed\n// }\n\n\n// Search Candidates example\nconst ashby_search_candidates = new AshbyBubble({\n operation: \"search_candidates\", // Search for candidates by email or name\n email: \"example string\", // Search by candidate email address\n name: \"example string\", // Search by candidate name\n});\n\nconst result = await ashby_search_candidates.action();\n// outputSchema for result.data when operation === 'search_candidates':\n// {\n// operation: \"search_candidates\" // Search candidates operation,\n// success: boolean // Whether the operation was successful,\n// candidates: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values }[] | undefined // List of matching candidates,\n// error: string // Error message if operation failed\n// }\n\n\n// Add Tag example\nconst ashby_add_tag = new AshbyBubble({\n operation: \"add_tag\", // Add a tag to a candidate\n candidate_id: \"example string\", // UUID of the candidate\n tag_id: \"example string\", // UUID of the tag to add\n});\n\nconst result = await ashby_add_tag.action();\n// outputSchema for result.data when operation === 'add_tag':\n// {\n// operation: \"add_tag\" // Add tag operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Updated candidate details,\n// error: string // Error message if operation failed\n// }\n\n\n// List Tags example\nconst ashby_list_tags = new AshbyBubble({\n operation: \"list_tags\", // List all candidate tags\n include_archived: false // default, // Whether to include archived tags\n});\n\nconst result = await ashby_list_tags.action();\n// outputSchema for result.data when operation === 'list_tags':\n// {\n// operation: \"list_tags\" // List tags operation,\n// success: boolean // Whether the operation was successful,\n// tags: { id: string // Tag ID, title: string // Tag title, isArchived: boolean | undefined // Whether the tag is archived }[] | undefined // List of candidate tags,\n// error: string // Error message if operation failed\n// }\n\n\n// Create Tag example\nconst ashby_create_tag = new AshbyBubble({\n operation: \"create_tag\", // Create a new candidate tag\n title: \"example string\", // Title of the tag to create\n});\n\nconst result = await ashby_create_tag.action();\n// outputSchema for result.data when operation === 'create_tag':\n// {\n// operation: \"create_tag\" // Create tag operation,\n// success: boolean // Whether the operation was successful,\n// tag: { id: string // Tag ID, title: string // Tag title, isArchived: boolean | undefined // Whether the tag is archived } | undefined // Created tag details,\n// error: string // Error message if operation failed\n// }\n\n\n// List Custom Fields example\nconst ashby_list_custom_fields = new AshbyBubble({\n operation: \"list_custom_fields\", // List all custom field definitions\n limit: 100 // default, // Maximum number of custom fields to return (1-100)\n cursor: \"example string\", // Pagination cursor for fetching subsequent pages\n sync_token: \"example string\", // Token for incremental synchronization\n});\n\nconst result = await ashby_list_custom_fields.action();\n// outputSchema for result.data when operation === 'list_custom_fields':\n// {\n// operation: \"list_custom_fields\" // List custom fields operation,\n// success: boolean // Whether the operation was successful,\n// custom_fields: { id: string // Custom field ID (UUID), isPrivate: boolean // Whether the field is private, title: string // Custom field title, objectType: string // Object type this field applies to (e.g., Application, Candidate), isArchived: boolean // Whether the field is archived, fieldType: string // Type of field (e.g., MultiValueSelect, String, Number), selectableValues: { label: string // Display label for the value, value: string // Value identifier, isArchived: boolean // Whether the value is archived }[] | undefined // Available values for select-type fields }[] | undefined // List of custom field definitions,\n// next_cursor: string | undefined // Cursor for fetching the next page of results,\n// more_data_available: boolean | undefined // Whether more data is available,\n// sync_token: string | undefined // Token for incremental sync,\n// error: string // Error message if operation failed\n// }\n\n\n// Always check success status before using data\nif (!result.success) {\n throw new Error(`ashby failed: ${result.error}`);\n}\n\n// Access the actual data\nconst actualData = result.data;\nconsole.log(actualData);",
|
|
63407
|
+
"usageExample": "// List Candidates example\nconst ashby_list_candidates = new AshbyBubble({\n operation: \"list_candidates\", // List all candidates with optional filtering\n limit: 100 // default, // Maximum number of candidates to return (1-100)\n cursor: \"example string\", // Pagination cursor for fetching subsequent pages\n status: \"Hired\" // options: \"Hired\", \"Archived\", \"Active\", \"Lead\", // Filter candidates by application status\n job_id: \"example string\", // Filter candidates by specific job ID\n created_after: 42, // Unix timestamp in milliseconds to filter candidates created after this time\n});\n\nconst result = await ashby_list_candidates.action();\n// outputSchema for result.data when operation === 'list_candidates':\n// {\n// operation: \"list_candidates\" // List candidates operation,\n// success: boolean // Whether the operation was successful,\n// candidates: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, emailAddresses: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email }[] | undefined // All email addresses, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, phoneNumbers: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone }[] | undefined // All phone numbers, socialLinks: { url: string // Social link URL, type: string // Type of social link (e.g., LinkedIn, GitHub) }[] | undefined // Social media links, tags: { id: string // Tag ID, title: string // Tag title, isArchived: boolean | undefined // Whether the tag is archived }[] | undefined // Tags assigned to candidate, position: string | undefined | null // Current position, company: string | undefined | null // Current company, school: string | undefined | null // School, applicationIds: string[] | undefined // IDs of applications for this candidate, resumeFileHandle: { id: string // File ID, name: string // File name, handle: string // File handle for download } | undefined | null // Resume file handle, fileHandles: { id: string // File ID, name: string // File name, handle: string // File handle for download }[] | undefined // All file handles, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, profileUrl: string | undefined | null // URL to the candidate profile in Ashby, source: unknown | undefined | null // Candidate source, creditedToUser: unknown | undefined | null // User credited for the candidate }[] | undefined // List of candidates,\n// next_cursor: string | undefined // Cursor for fetching the next page of results,\n// more_data_available: boolean | undefined // Whether more data is available,\n// sync_token: string | undefined // Token for incremental sync,\n// error: string // Error message if operation failed\n// }\n\n\n// Get Candidate example\nconst ashby_get_candidate = new AshbyBubble({\n operation: \"get_candidate\", // Get detailed information about a specific candidate\n candidate_id: \"example string\", // UUID of the candidate to retrieve\n});\n\nconst result = await ashby_get_candidate.action();\n// outputSchema for result.data when operation === 'get_candidate':\n// {\n// operation: \"get_candidate\" // Get candidate operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Candidate details,\n// error: string // Error message if operation failed\n// }\n\n\n// Create Candidate example\nconst ashby_create_candidate = new AshbyBubble({\n operation: \"create_candidate\", // Create a new candidate\n name: \"example string\", // Candidate's full name (first and last name)\n emails: [{ email: \"example string\" // Email address, type: \"Personal\" // options: \"Personal\", \"Work\", \"Other\" // Type of email (Personal, Work, or Other) }], // Candidate's email addresses with type. The Personal email becomes the primary email, others become alternates.\n phone_number: \"example string\", // Candidate's primary phone number\n linkedin_url: \"example string\", // URL to the candidate's LinkedIn profile\n github_url: \"example string\", // URL to the candidate's GitHub profile\n website: \"example string\", // URL of the candidate's website\n source_id: \"example string\", // The source ID to set on the candidate\n credited_to_user_id: \"example string\", // The ID of the user the candidate will be credited to\n tag: \"example string\", // Optional tag to add to the candidate. Can be a tag ID (UUID) or tag name. If a name is provided, the tag will be created first.\n allow_duplicate_linkedin: false // default, // Whether to allow creating a candidate with a LinkedIn URL that already exists. When false (default), the existing candidate is returned instead of creating a duplicate.\n});\n\nconst result = await ashby_create_candidate.action();\n// outputSchema for result.data when operation === 'create_candidate':\n// {\n// operation: \"create_candidate\" // Create candidate operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Created candidate details (or existing candidate if duplicate was found),\n// duplicate: boolean | undefined // True if a candidate with the same LinkedIn profile already existed and was returned instead of creating a new one,\n// error: string // Error message if operation failed\n// }\n\n\n// Search Candidates example\nconst ashby_search_candidates = new AshbyBubble({\n operation: \"search_candidates\", // Search for candidates by email or name\n email: \"example string\", // Search by candidate email address\n name: \"example string\", // Search by candidate name\n});\n\nconst result = await ashby_search_candidates.action();\n// outputSchema for result.data when operation === 'search_candidates':\n// {\n// operation: \"search_candidates\" // Search candidates operation,\n// success: boolean // Whether the operation was successful,\n// candidates: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values }[] | undefined // List of matching candidates,\n// error: string // Error message if operation failed\n// }\n\n\n// Add Tag example\nconst ashby_add_tag = new AshbyBubble({\n operation: \"add_tag\", // Add a tag to a candidate\n candidate_id: \"example string\", // UUID of the candidate\n tag_id: \"example string\", // UUID of the tag to add\n});\n\nconst result = await ashby_add_tag.action();\n// outputSchema for result.data when operation === 'add_tag':\n// {\n// operation: \"add_tag\" // Add tag operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Updated candidate details,\n// error: string // Error message if operation failed\n// }\n\n\n// List Tags example\nconst ashby_list_tags = new AshbyBubble({\n operation: \"list_tags\", // List all candidate tags\n include_archived: false // default, // Whether to include archived tags\n});\n\nconst result = await ashby_list_tags.action();\n// outputSchema for result.data when operation === 'list_tags':\n// {\n// operation: \"list_tags\" // List tags operation,\n// success: boolean // Whether the operation was successful,\n// tags: { id: string // Tag ID, title: string // Tag title, isArchived: boolean | undefined // Whether the tag is archived }[] | undefined // List of candidate tags,\n// error: string // Error message if operation failed\n// }\n\n\n// Create Tag example\nconst ashby_create_tag = new AshbyBubble({\n operation: \"create_tag\", // Create a new candidate tag\n title: \"example string\", // Title of the tag to create\n});\n\nconst result = await ashby_create_tag.action();\n// outputSchema for result.data when operation === 'create_tag':\n// {\n// operation: \"create_tag\" // Create tag operation,\n// success: boolean // Whether the operation was successful,\n// tag: { id: string // Tag ID, title: string // Tag title, isArchived: boolean | undefined // Whether the tag is archived } | undefined // Created tag details,\n// error: string // Error message if operation failed\n// }\n\n\n// List Custom Fields example\nconst ashby_list_custom_fields = new AshbyBubble({\n operation: \"list_custom_fields\", // List all custom field definitions\n limit: 100 // default, // Maximum number of custom fields to return (1-100)\n cursor: \"example string\", // Pagination cursor for fetching subsequent pages\n sync_token: \"example string\", // Token for incremental synchronization\n});\n\nconst result = await ashby_list_custom_fields.action();\n// outputSchema for result.data when operation === 'list_custom_fields':\n// {\n// operation: \"list_custom_fields\" // List custom fields operation,\n// success: boolean // Whether the operation was successful,\n// custom_fields: { id: string // Custom field ID (UUID), isPrivate: boolean // Whether the field is private, title: string // Custom field title, objectType: string // Object type this field applies to (e.g., Application, Candidate), isArchived: boolean // Whether the field is archived, fieldType: string // Type of field (e.g., MultiValueSelect, String, Number), selectableValues: { label: string // Display label for the value, value: string // Value identifier, isArchived: boolean // Whether the value is archived }[] | undefined // Available values for select-type fields }[] | undefined // List of custom field definitions,\n// next_cursor: string | undefined // Cursor for fetching the next page of results,\n// more_data_available: boolean | undefined // Whether more data is available,\n// sync_token: string | undefined // Token for incremental sync,\n// error: string // Error message if operation failed\n// }\n\n\n// List Jobs example\nconst ashby_list_jobs = new AshbyBubble({\n operation: \"list_jobs\", // List all jobs\n limit: 100 // default, // Maximum number of jobs to return (1-100)\n cursor: \"example string\", // Pagination cursor for fetching subsequent pages\n status: \"Open\" // options: \"Open\", \"Closed\", \"Draft\", \"Archived\", // Filter jobs by status\n});\n\nconst result = await ashby_list_jobs.action();\n// outputSchema for result.data when operation === 'list_jobs':\n// {\n// operation: \"list_jobs\" // List jobs operation,\n// success: boolean // Whether the operation was successful,\n// jobs: { id: string // Unique job identifier (UUID), title: string // Job title, status: string | undefined // Job status (e.g., Open, Closed, Draft, Archived), departmentId: string | undefined | null // Department ID, teamId: string | undefined | null // Team ID, locationId: string | undefined | null // Location ID, locationIds: string[] | undefined // Location IDs, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, openedAt: string | undefined | null // ISO 8601 opened timestamp, closedAt: string | undefined | null // ISO 8601 closed timestamp, createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp }[] | undefined // List of jobs,\n// next_cursor: string | undefined // Cursor for next page,\n// more_data_available: boolean | undefined // Whether more data is available,\n// error: string // Error message if operation failed\n// }\n\n\n// Get Job example\nconst ashby_get_job = new AshbyBubble({\n operation: \"get_job\", // Get detailed information about a specific job\n job_id: \"example string\", // UUID of the job to retrieve\n});\n\nconst result = await ashby_get_job.action();\n// outputSchema for result.data when operation === 'get_job':\n// {\n// operation: \"get_job\" // Get job operation,\n// success: boolean // Whether the operation was successful,\n// job: { id: string // Unique job identifier (UUID), title: string // Job title, status: string | undefined // Job status (e.g., Open, Closed, Draft, Archived), departmentId: string | undefined | null // Department ID, teamId: string | undefined | null // Team ID, locationId: string | undefined | null // Location ID, locationIds: string[] | undefined // Location IDs, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, openedAt: string | undefined | null // ISO 8601 opened timestamp, closedAt: string | undefined | null // ISO 8601 closed timestamp, createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp } | undefined // Job details,\n// interview_stages: { id: string // Interview stage ID (UUID), title: string // Stage title, type: string | undefined // Stage type (e.g., PreInterviewScreen, IndividualInterview), orderInInterviewPlan: number | undefined // Order in the interview plan, interviewPlanId: string | undefined // Interview plan ID }[] | undefined // Interview stages for this job,\n// error: string // Error message if operation failed\n// }\n\n\n// List Applications example\nconst ashby_list_applications = new AshbyBubble({\n operation: \"list_applications\", // List applications with optional filtering\n candidate_id: \"example string\", // Filter by candidate ID\n job_id: \"example string\", // Filter by job ID\n status: \"Active\" // options: \"Active\", \"Hired\", \"Archived\", \"Lead\", // Filter by application status\n limit: 100 // default, // Maximum number of applications to return (1-100)\n cursor: \"example string\", // Pagination cursor for fetching subsequent pages\n created_after: 42, // Unix timestamp in milliseconds — only return applications created after this time\n});\n\nconst result = await ashby_list_applications.action();\n// outputSchema for result.data when operation === 'list_applications':\n// {\n// operation: \"list_applications\" // List applications operation,\n// success: boolean // Whether the operation was successful,\n// applications: { id: string // Unique application identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, status: string | undefined // Application status (Active, Hired, Archived, Lead), candidateId: string | undefined | null // Candidate ID, jobId: string | undefined | null // Job ID, currentInterviewStage: { id: string // Interview stage ID (UUID), title: string // Stage title, type: string | undefined // Stage type (e.g., PreInterviewScreen, IndividualInterview), orderInInterviewPlan: number | undefined // Order in the interview plan, interviewPlanId: string | undefined // Interview plan ID } | undefined | null // Current interview stage, source: unknown | undefined | null // Application source, archiveReason: unknown | undefined | null // Archive reason if archived, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, hiringTeam: { userId: string // Team member user ID, role: string // Role in hiring team, email: string | undefined // Team member email, firstName: string | undefined // First name, lastName: string | undefined // Last name }[] | undefined // Hiring team members }[] | undefined // List of applications,\n// next_cursor: string | undefined // Cursor for next page,\n// more_data_available: boolean | undefined // Whether more data is available,\n// error: string // Error message if operation failed\n// }\n\n\n// Get Application example\nconst ashby_get_application = new AshbyBubble({\n operation: \"get_application\", // Get detailed information about a specific application\n application_id: \"example string\", // UUID of the application to retrieve\n});\n\nconst result = await ashby_get_application.action();\n// outputSchema for result.data when operation === 'get_application':\n// {\n// operation: \"get_application\" // Get application operation,\n// success: boolean // Whether the operation was successful,\n// application: { id: string // Unique application identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, status: string | undefined // Application status (Active, Hired, Archived, Lead), candidateId: string | undefined | null // Candidate ID, jobId: string | undefined | null // Job ID, currentInterviewStage: { id: string // Interview stage ID (UUID), title: string // Stage title, type: string | undefined // Stage type (e.g., PreInterviewScreen, IndividualInterview), orderInInterviewPlan: number | undefined // Order in the interview plan, interviewPlanId: string | undefined // Interview plan ID } | undefined | null // Current interview stage, source: unknown | undefined | null // Application source, archiveReason: unknown | undefined | null // Archive reason if archived, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, hiringTeam: { userId: string // Team member user ID, role: string // Role in hiring team, email: string | undefined // Team member email, firstName: string | undefined // First name, lastName: string | undefined // Last name }[] | undefined // Hiring team members } | undefined // Application details,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Associated candidate,\n// job: { id: string // Unique job identifier (UUID), title: string // Job title, status: string | undefined // Job status (e.g., Open, Closed, Draft, Archived), departmentId: string | undefined | null // Department ID, teamId: string | undefined | null // Team ID, locationId: string | undefined | null // Location ID, locationIds: string[] | undefined // Location IDs, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, openedAt: string | undefined | null // ISO 8601 opened timestamp, closedAt: string | undefined | null // ISO 8601 closed timestamp, createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp } | undefined // Associated job,\n// error: string // Error message if operation failed\n// }\n\n\n// Create Application example\nconst ashby_create_application = new AshbyBubble({\n operation: \"create_application\", // Submit a candidate to a job by creating an application\n candidate_id: \"example string\", // UUID of the candidate\n job_id: \"example string\", // UUID of the job to apply to\n interview_stage_id: \"example string\", // Optional interview stage ID to start at\n source_id: \"example string\", // Optional source ID to attribute the application to\n});\n\nconst result = await ashby_create_application.action();\n// outputSchema for result.data when operation === 'create_application':\n// {\n// operation: \"create_application\" // Create application operation,\n// success: boolean // Whether the operation was successful,\n// application: { id: string // Unique application identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, status: string | undefined // Application status (Active, Hired, Archived, Lead), candidateId: string | undefined | null // Candidate ID, jobId: string | undefined | null // Job ID, currentInterviewStage: { id: string // Interview stage ID (UUID), title: string // Stage title, type: string | undefined // Stage type (e.g., PreInterviewScreen, IndividualInterview), orderInInterviewPlan: number | undefined // Order in the interview plan, interviewPlanId: string | undefined // Interview plan ID } | undefined | null // Current interview stage, source: unknown | undefined | null // Application source, archiveReason: unknown | undefined | null // Archive reason if archived, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, hiringTeam: { userId: string // Team member user ID, role: string // Role in hiring team, email: string | undefined // Team member email, firstName: string | undefined // First name, lastName: string | undefined // Last name }[] | undefined // Hiring team members } | undefined // Created application,\n// error: string // Error message if operation failed\n// }\n\n\n// Change Application Stage example\nconst ashby_change_application_stage = new AshbyBubble({\n operation: \"change_application_stage\", // Move an application to a different interview stage\n application_id: \"example string\", // UUID of the application\n interview_stage_id: \"example string\", // UUID of the interview stage to move to\n});\n\nconst result = await ashby_change_application_stage.action();\n// outputSchema for result.data when operation === 'change_application_stage':\n// {\n// operation: \"change_application_stage\" // Change application stage operation,\n// success: boolean // Whether the operation was successful,\n// application: { id: string // Unique application identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, status: string | undefined // Application status (Active, Hired, Archived, Lead), candidateId: string | undefined | null // Candidate ID, jobId: string | undefined | null // Job ID, currentInterviewStage: { id: string // Interview stage ID (UUID), title: string // Stage title, type: string | undefined // Stage type (e.g., PreInterviewScreen, IndividualInterview), orderInInterviewPlan: number | undefined // Order in the interview plan, interviewPlanId: string | undefined // Interview plan ID } | undefined | null // Current interview stage, source: unknown | undefined | null // Application source, archiveReason: unknown | undefined | null // Archive reason if archived, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values, hiringTeam: { userId: string // Team member user ID, role: string // Role in hiring team, email: string | undefined // Team member email, firstName: string | undefined // First name, lastName: string | undefined // Last name }[] | undefined // Hiring team members } | undefined // Updated application,\n// error: string // Error message if operation failed\n// }\n\n\n// Update Candidate example\nconst ashby_update_candidate = new AshbyBubble({\n operation: \"update_candidate\", // Update an existing candidate\n candidate_id: \"example string\", // UUID of the candidate to update\n name: \"example string\", // Updated candidate name\n email: \"example string\", // Updated primary email\n phone_number: \"example string\", // Updated phone number\n linkedin_url: \"example string\", // Updated LinkedIn profile URL\n github_url: \"example string\", // Updated GitHub profile URL\n website: \"example string\", // Updated website URL\n});\n\nconst result = await ashby_update_candidate.action();\n// outputSchema for result.data when operation === 'update_candidate':\n// {\n// operation: \"update_candidate\" // Update candidate operation,\n// success: boolean // Whether the operation was successful,\n// candidate: { id: string // Unique candidate identifier (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, updatedAt: string | undefined // ISO 8601 update timestamp, name: string // Full name of the candidate, primaryEmailAddress: { value: string // Email address value, type: \"Personal\" | \"Work\" | \"Other\" // Type of email, isPrimary: boolean // Whether this is the primary email } | undefined | null // Primary email address, primaryPhoneNumber: { value: string // Phone number value, type: \"Personal\" | \"Work\" | \"Other\" // Type of phone, isPrimary: boolean // Whether this is the primary phone } | undefined | null // Primary phone number, customFields: { id: string // Custom field ID, title: string // Custom field title, value: unknown // Custom field value, isPrivate: boolean | undefined // Whether the field is private }[] | undefined // Custom field values } | undefined // Updated candidate,\n// error: string // Error message if operation failed\n// }\n\n\n// Create Note example\nconst ashby_create_note = new AshbyBubble({\n operation: \"create_note\", // Add a note to a candidate\n candidate_id: \"example string\", // UUID of the candidate\n content: \"example string\", // Note content (plain text or HTML)\n});\n\nconst result = await ashby_create_note.action();\n// outputSchema for result.data when operation === 'create_note':\n// {\n// operation: \"create_note\" // Create note operation,\n// success: boolean // Whether the operation was successful,\n// note: { id: string // Note ID (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, content: string // Note content (HTML), author: { id: string // Author user ID, firstName: string | undefined // Author first name, lastName: string | undefined // Author last name, email: string | undefined // Author email } | undefined | null // Note author } | undefined // Created note,\n// error: string // Error message if operation failed\n// }\n\n\n// List Notes example\nconst ashby_list_notes = new AshbyBubble({\n operation: \"list_notes\", // List notes for a candidate\n candidate_id: \"example string\", // UUID of the candidate\n});\n\nconst result = await ashby_list_notes.action();\n// outputSchema for result.data when operation === 'list_notes':\n// {\n// operation: \"list_notes\" // List notes operation,\n// success: boolean // Whether the operation was successful,\n// notes: { id: string // Note ID (UUID), createdAt: string | undefined // ISO 8601 creation timestamp, content: string // Note content (HTML), author: { id: string // Author user ID, firstName: string | undefined // Author first name, lastName: string | undefined // Author last name, email: string | undefined // Author email } | undefined | null // Note author }[] | undefined // List of notes,\n// error: string // Error message if operation failed\n// }\n\n\n// List Sources example\nconst ashby_list_sources = new AshbyBubble({\n operation: \"list_sources\", // List all candidate sources\n});\n\nconst result = await ashby_list_sources.action();\n// outputSchema for result.data when operation === 'list_sources':\n// {\n// operation: \"list_sources\" // List sources operation,\n// success: boolean // Whether the operation was successful,\n// sources: { id: string // Source ID (UUID), title: string // Source title, isArchived: boolean | undefined // Whether the source is archived }[] | undefined // List of sources,\n// error: string // Error message if operation failed\n// }\n\n\n// List Interview Stages example\nconst ashby_list_interview_stages = new AshbyBubble({\n operation: \"list_interview_stages\", // List interview stages for a job\n job_id: \"example string\", // UUID of the job to get interview stages for\n});\n\nconst result = await ashby_list_interview_stages.action();\n// outputSchema for result.data when operation === 'list_interview_stages':\n// {\n// operation: \"list_interview_stages\" // List interview stages operation,\n// success: boolean // Whether the operation was successful,\n// interview_stages: { id: string // Interview stage ID (UUID), title: string // Stage title, type: string | undefined // Stage type (e.g., PreInterviewScreen, IndividualInterview), orderInInterviewPlan: number | undefined // Order in the interview plan, interviewPlanId: string | undefined // Interview plan ID }[] | undefined // List of interview stages,\n// error: string // Error message if operation failed\n// }\n\n\n// Get File Url example\nconst ashby_get_file_url = new AshbyBubble({\n operation: \"get_file_url\", // Get a download URL for a file (e.g., resume)\n file_handle: \"example string\", // File handle from a candidate record (e.g., resumeFileHandle.handle)\n});\n\nconst result = await ashby_get_file_url.action();\n// outputSchema for result.data when operation === 'get_file_url':\n// {\n// operation: \"get_file_url\" // Get file URL operation,\n// success: boolean // Whether the operation was successful,\n// file: { id: string | undefined // File ID, name: string | undefined // File name, url: string // Temporary download URL } | undefined // File info with download URL,\n// error: string // Error message if operation failed\n// }\n\n\n// List Projects example\nconst ashby_list_projects = new AshbyBubble({\n operation: \"list_projects\", // List all projects\n});\n\nconst result = await ashby_list_projects.action();\n// outputSchema for result.data when operation === 'list_projects':\n// {\n// operation: \"list_projects\" // List projects operation,\n// success: boolean // Whether the operation was successful,\n// projects: { id: string // Project ID (UUID), title: string // Project title, isArchived: boolean | undefined // Whether the project is archived }[] | undefined // List of projects,\n// error: string // Error message if operation failed\n// }\n\n\n// Get Project example\nconst ashby_get_project = new AshbyBubble({\n operation: \"get_project\", // Get project details\n project_id: \"example string\", // UUID of the project\n});\n\nconst result = await ashby_get_project.action();\n// outputSchema for result.data when operation === 'get_project':\n// {\n// operation: \"get_project\" // Get project operation,\n// success: boolean // Whether the operation was successful,\n// project: { id: string // Project ID (UUID), title: string // Project title, isArchived: boolean | undefined // Whether the project is archived } | undefined // Project details,\n// error: string // Error message if operation failed\n// }\n\n\n// List Candidate Projects example\nconst ashby_list_candidate_projects = new AshbyBubble({\n operation: \"list_candidate_projects\", // List all projects a candidate belongs to\n candidate_id: \"example string\", // UUID of the candidate\n});\n\nconst result = await ashby_list_candidate_projects.action();\n// outputSchema for result.data when operation === 'list_candidate_projects':\n// {\n// operation: \"list_candidate_projects\" // List candidate projects operation,\n// success: boolean // Whether the operation was successful,\n// projects: { id: string // Project ID (UUID), title: string // Project title, isArchived: boolean | undefined // Whether the project is archived }[] | undefined // Projects the candidate belongs to,\n// error: string // Error message if operation failed\n// }\n\n\n// Add Candidate To Project example\nconst ashby_add_candidate_to_project = new AshbyBubble({\n operation: \"add_candidate_to_project\", // Add a candidate to a project\n candidate_id: \"example string\", // UUID of the candidate\n project_id: \"example string\", // UUID of the project\n});\n\nconst result = await ashby_add_candidate_to_project.action();\n// outputSchema for result.data when operation === 'add_candidate_to_project':\n// {\n// operation: \"add_candidate_to_project\" // Add candidate to project operation,\n// success: boolean // Whether the operation was successful,\n// error: string // Error message if operation failed\n// }\n\n\n// Remove Candidate From Project example\nconst ashby_remove_candidate_from_project = new AshbyBubble({\n operation: \"remove_candidate_from_project\", // Remove a candidate from a project\n candidate_id: \"example string\", // UUID of the candidate\n project_id: \"example string\", // UUID of the project\n});\n\nconst result = await ashby_remove_candidate_from_project.action();\n// outputSchema for result.data when operation === 'remove_candidate_from_project':\n// {\n// operation: \"remove_candidate_from_project\" // Remove candidate from project operation,\n// success: boolean // Whether the operation was successful,\n// error: string // Error message if operation failed\n// }\n\n\n// Always check success status before using data\nif (!result.success) {\n throw new Error(`ashby failed: ${result.error}`);\n}\n\n// Access the actual data\nconst actualData = result.data;\nconsole.log(actualData);",
|
|
60971
63408
|
"requiredCredentials": [
|
|
60972
63409
|
"ASHBY_CRED"
|
|
60973
63410
|
]
|