GET
/
api
/
v1
/
submission-events
curl --request GET \
  --url https://vision.pingintel.com/api/v1/submission-events \
  --header 'Authorization: <api-key>'
{
  "results": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "division_uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "event_type": "NEW",
      "user_id": 123,
      "pingid": "<string>",
      "message": "<string>",
      "created_time": "2023-11-07T05:31:56Z",
      "old_value": "<string>",
      "new_value": "<string>"
    }
  ],
  "cursor_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Supports Token-prefixed API keys and Bearer-prefixed JWT-based authentication.

Query Parameters

cursor_id
string | null

Optional. If iterating through a result set, this is the cursor ID to start from, obtained from the last response's cursor_id field.

division
string

Optional. The division UUID to filter results by. (Must include at least one of division, team, or pingid.)

Minimum length: 1
page_size
integer
default:50

Optional. The maximum number of results returned in a page.

Required range: 1 <= x <= 250
pingid
string

Optional. The pingid to filter results by. (Must include at least one of division, team, or pingid.)

Minimum length: 1
start
string | null

Optional. Start timestamp for which results will be returned. All timestamps are UTC. It should be formatted like %Y%m%d%H%M%S. E.g. Jan 1 2023 1:00 PM would be given as 20230101130000.

team
string

Optional. The team UUID to filter results by. (Must include at least one of division, team, or pingid.)

Minimum length: 1

Response

200 - application/json

The response is of type object.