Verification Statuses

Get all Verification Statuses

This endpoint returns a list of Verification Status resources.

GET /api/v2/verification-statuses/

GET /api/v2/verification-statuses/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json

{
    "results": [
        {
            "label": "Pass",
            "name": "pass",
            "ordinal": 3
        },
        {
            "label": "Partial Pass",
            "name": "partial",
            "ordinal": 2
        },
        {
            "label": "No Verification Status",
            "name": "none",
            "ordinal": 1
        },
        {
            "label": "Fail",
            "name": "fail",
            "ordinal": 0
        }
    ]
}

Get a Specific Verification Status

This endpoint retrieves a single verification status resource, as specified by the name parameter.

GET /api/v2/verification-statuses/{name}/

URL Parameters

Parameter Description
name The name of the verification status to retrieve
GET /api/v2/verification-statuses/fail/ HTTP/1.1
Accept: application/json
Authorization: Token "YOUR SDE ACCESS TOKEN"
HTTP/1.1 200 OK
Content-Type: application/json

{
    "label": "Fail",
    "name": "fail",
    "ordinal": 0
}

results matching ""

    No results matching ""