Skip to main content
GET
/
v1
/
issuer-applications
List issuer applications
curl --request GET \
  --url https://api.truthlocks.com/v1/issuer-applications \
  --header 'X-API-Key: <api-key>'
{
  "items": [
    {
      "id": "<string>",
      "legal_name": "<string>",
      "status": "<string>",
      "created_at": "<string>"
    }
  ]
}
Returns a paginated list of issuer applications belonging to your tenant. Use the status query parameter to filter by application state.

Parameters

status
string
Filter by application status. Accepted values: DRAFT, SUBMITTED, IN_REVIEW, APPROVED, REJECTED, SUSPENDED.
limit
integer
Maximum number of results to return. Defaults to 20, maximum 100.
offset
integer
Number of results to skip for pagination. Defaults to 0.

Responses

Authorizations

X-API-Key
string
header
required

API key for machine-to-machine authentication

Query Parameters

status
enum<string>
Available options:
DRAFT,
SUBMITTED,
APPROVED,
REJECTED

Response

Applications list

items
object[]