List Validation Submissions
GET/v1/validation-submissions
List Validation Submissions
Request​
Query Parameters
direction string
Possible values: [ASC
, DESC
]
Which way to sort by the given 'sort' field. Default DESC
cursor string
A cursor that points to where to start the page
pageSize integer
How many items per page, for pagination.
Default value:
25
status stringdeprecated
Possible values: [pending
, processed
, failed
, succeeded
]
Filter by Validation Submission status
statuses string[]
Possible values: [pending
, processed
, failed
, succeeded
]
Filter by multiple statuses
configurationIds string[]
Filter by multiple configuration ids
email string
validationRequestIds string[]
organisationIds string[]
query string
Search by agent verification email, organisation name or validation request name
Example: example@example.com
countryCodes string[]
Responses​
- 200
- 400
- 401
- 403
Successfully retrieved list of Validation Submissions
- application/json
- Schema
- Example (from schema)
Schema
data object[]
object string
Example:
validation_submission
totalResults integer
Example:
33
pageSize integer
Example:
25
_links
object
current string
Example:
https://.../v1/...?cursor=eyJ2Ijox...N3AifQ%3D%3D
next string
Example:
https://.../v1/...?cursor=eyJ2Ijox...N3AifQ%3D%3D
prev string
Example:
https://.../v1/...?cursor=eyJ2Ijox...N3AifQ%3D%3D
{
"data": [
{
"id": "validationsubmission_xxxxxxxxxxxx",
"validationInviteId": "validationinvite_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"status": "pending",
"organisationId": "organisation_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"organisationName": "string",
"validationRequestId": "validationrequest_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"validationRequest": {
"acceptedAt": "2022-02-02T17:46:54.000Z",
"rejectedAt": "2022-02-02T17:46:54.000Z",
"id": "validationrequest_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "string",
"organisationTypes": [
"nonprofit"
]
},
"monitoringSubscriptionId": "monitoringsubscription_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"agentVerificationId": "agentverification_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"agentVerification": {
"id": "validationrequest_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"email": "string",
"firstName": "string",
"lastName": "string",
"status": "pending",
"rejectionReasonCode": "validation_request_failed",
"language": "en-GB"
},
"eligibilitySubscriptionId": "eligibilitysubscription_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"eligibility": {
"status": "live",
"results": {
"eligibilityStatus": "fail",
"confirmedActivitySubTags": [
"activitysubtag_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
],
"rejectedActivitySubTags": [
"activitysubtag_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
]
}
},
"organisation": {
"name": "organisation_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"countryCode": "AUS"
},
"processedAt": "2022-02-02T17:46:54.000Z",
"createdAt": "2022-02-02T17:46:54.000Z",
"metadata": {
"key1": "value1",
"key2": "value2"
},
"partnerFields": {
"key1": "value1",
"key2": "value2"
},
"configuration": {
"id": "hostedconfiguration_xxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"name": "string",
"allowedOrganisations": {
"types": [
"social_impact"
]
}
}
}
],
"object": "validation_submission",
"totalResults": 33,
"pageSize": 25,
"_links": {
"current": "https://.../v1/...?cursor=eyJ2Ijox...N3AifQ%3D%3D",
"next": "https://.../v1/...?cursor=eyJ2Ijox...N3AifQ%3D%3D",
"prev": "https://.../v1/...?cursor=eyJ2Ijox...N3AifQ%3D%3D"
}
}
Bad request
- application/json
- Schema
- Example (from schema)
- IncorrectParams
- CursorError
Schema
error
object
code string
title string
message string
reasons string[]nullable
{
"error": {
"code": "string",
"title": "string",
"message": "string",
"reasons": [
"string"
]
}
}
400 Incorrect Parameters
{
"error": {
"code": "bad_request",
"title": "Bad request",
"message": "One or more of the inputs were invalid",
"reasons": [
"pageSize must be greater than or equal to 0"
]
}
}
Error in cursor parameter
{
"error": {
"code": "pagination/cursor_error",
"title": "Bad request",
"message": "Unable to find the next page"
}
}
Unauthorized
Forbidden (scope)
- application/json
- Schema
- Example (from schema)
Schema
error
object
code string
Example:
forbidden
title string
Example:
Forbidden
message string
Example:
Access is denied due to missing scope permissions
{
"error": {
"code": "forbidden",
"title": "Forbidden",
"message": "Access is denied due to missing scope permissions"
}
}
Loading...