User Hub Bulk APIs
Use the User Hub Bulk APIs to import your end users' data into Helpshift, and export current end user data from Helpshift.
To use this Postman collection, you will need to know your Helpshift domain and the API key, which is available on the admin dashboard under Settings -> APIs.
POSTCreate Bulk Action Task
Create a new Bulk Import task to import end user data into Helpshift, or export end user data from Helpshift.
The following task types are supported -
create_core_profiles - Create new core profiles (domain level profiles corresponding to an end user)
update_core_profiles - Update existing core profiles
update_app_profiles - Update existing app profiles (end user profiles for a specific app)
get_core_profiles - Export existing core profiles as JSON
get_app_profiles - Export existing app profiles as JSON
The payload for each task type varies, and consists of an array of individual requests for the given task type. See https://developers.helpshift.com/rest-api/user-hub-bulk-apis/ for details.
The response will contain the Task ID, which can be used to query for task status, and fetch the results (or errors, if any) once the task is completed.
GETGet Task Status
Get the current status of a previoiusly created Bulk Action task.
The response will contain the current state of the task, which can be one of -
created - task has been created, but not picked for execution yet
queued - task has been validated, and queued for processing
processing - the task is currentl;y being processed
completed - the task has finished, either successfully, or with errors
The response will also contain a progress percentage, and two boolean flags -
errors - when true, the task result had one or more errors
results - when true, the task results are available for download
GETGet Task Results
Get the results of the given bulk action task.
The API response will be a compressed file containing JSON data. The format of the JSON data will vary based on the task type.
GETGet Task Errors
Get details of any errors encountered while processing the given bulk action task.
The API response will be a compressed file containing JSON data. The format of the JSON data will vary based on the task type. If there were no errors, the file will be empty.