
Ashby API Integration Profile
Information and guides about integrating with Ashby API
Add Ashby Integration to Your Product- Download Resume By Candidate Id
- apiKey.infoRetrieve information about the API key being used to make the request. Requires the apiKeysReadpermission.
- application.changeSourceChange the source of an application. Requires the candidatesWritepermission.
- application.changeStageChange the stage of an application Requires the candidatesWritepermission.
- application.createConsider a candidate for a job Requires the candidatesWritepermission.
- application.infoFetch application details by application id or by submitted form instance id (which is return by the applicationForm.submitendpoint). If both applicationId and submittedFormInstanceId are provided, we will lookup by applicationId.Requires the candidatesReadpermission.
- application.listGets all applications schedules in the organization. Requires the candidatesReadpermission.
- applicationFeedback.listList all feedback associated with an application. Requires the candidatesReadpermission.The submittedValuesfield in the response contains the submitted feedback in an object where the key is the path of the field and the value is the value submitted for that field.
- applicationFeedback.submitApplication feedback forms support a variety of field types. Requires the candidatesWritepermission.The values accepted for each field depend on the type of field that's being filled out: | - Boolean- A boolean value
- Date- A date string in the format YYYY-MM-DD
- Email- A valid email address
- Number- An integer
- RichText- We do not support submitting rich text documents via the API but we do support submitting plain text values for these fields. Plain text values must be submitted in the format- { type: "PlainText", value: "A plain text string" }
- Score- An integer between 1 and 4 submitted in the format- { score: 4 }
- Phone,- StringA string
- ValueSelect- A string that matches the value of one of the ValueSelect field's selectable options
- MultiValueSelect- An array of strings that exist in the MultiValueSelect field's selectable options
 The submittedValuesfield in the response contains the submitted feedback in an object where the key is the path of the field and the value is the value submitted for that field.
- applicationForm.submitSubmit an application for a job posting. Requires the candidatesWritepermission.The Content-Type of this request must be multipart/form-data.Note: The requests generated from this documentation will not work for this endpoint.