Skip to main content
GET
/
v0
/
sis
/
pint
/
{pint_id}
/
status
Get Pint Status
curl --request GET \
  --url https://sis.sumvin.com/v0/sis/pint/{pint_id}/status \
  --header 'Authorization: Bearer <token>'
{
  "_links": {
    "self": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    },
    "pint": {
      "href": "<string>",
      "method": "GET",
      "templated": false,
      "description": "<string>"
    }
  },
  "id": "<string>",
  "valid": true,
  "reason": "<string>",
  "revoked_at": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

pint_id
string
required

Response

Successful Response

id
string
required

PINT SRI (e.g. sr:us:pint:abc123)

valid
boolean
required

Whether the PINT is currently active and not expired

reason
string | null

Null when valid; 'revoked' or 'expired' when invalid

revoked_at
integer | null

Epoch milliseconds when PINT was revoked (only present when revoked)