Activity Log
Fetches account activity information.
path Parameters
accountId required | string |
query Parameters
v required | string A date in |
Request Body schema: application/json
limit | integer Optional. Number of results to return, up to 200. Default 50. |
offset | integer Optional. Number of results to skip. Used to page through results. Default 0. |
object |
Responses
Request samples
- Payload
Content type
application/json
{- "limit": 0,
- "offset": 0,
- "filters": {
- "startDate": "2019-08-24",
- "endDate": "2019-08-24",
- "locationIds": [
- "string"
], - "activityTypes": [
- "LOCATION_UPDATED"
], - "actors": [
- "YEXT_SYSTEM"
]
}
}
Response samples
- 200
- default
Content type
application/json
{- "meta": {
- "uuid": "4f72b877-e2d0-4de4-9324-b9cf2c03e1a0"
}, - "response": {
- "count": 0,
- "activities": [
- {
- "type": "string",
- "timestamp": 0,
- "locationId": "string",
- "actor": "string",
- "actorDetails": {
- "name": "string",
- "email": "string"
}, - "content": "string",
- "details": "string"
}
]
}
}