List User Activities
| Time | Status | User Agent | |
|---|---|---|---|
| Make a request to see history. |
URL Expired
The URL for this request expired after 30 days.
Overview
This endpoint allows you to query for all of the activity of a particular user. The endpoint allows filtering by date ranges and activity types.
Some examples of logged user activities are creating Applicants, moving Applicants within an Opening, scheduling interviews, modifying Applicant profile data, and uploading a file to an Applicant's profile.
Retrieve user ID's using the List all Users endpoint.
Restrictions
The maximum date range is 1 month, otherwise an error will be returned.
- Time Format: YYYY-MM-DD
Parameters
| Name | Type | Requirement | Description |
|---|---|---|---|
| id | string | required | The User ID |
| start_time | string | required | Start must be within 30 days of End Time |
| end_time | string | required | The end date of the activities |
| activity_type | string | optional | The key describing the activity |
| per_page | integer | optional | Results per page |
| page | integer | optional | Page number |
Response Codes
200OK401Unauthorized
Example Request
curl --request GET \
--url https://api.fountain.com/v2/user_activities/id \
--header 'accept: application/json'
Example Response
{
"status": "success",
"data": {...}
}