CKBull Signer API
  • CKBull Signer API
  • Getting started
    • Create an account
    • Register a dApp
    • Regenerate API keys
    • Next steps
  • Guides and Concepts
    • Introduction
    • Sign in request
    • Transaction request
  • API
    • Introduction
    • Authentication
    • Transactions
    • Requests
      • Sign in request
      • Transaction request
    • Polling
Powered by GitBook
On this page
  1. API

Polling

Requests status polling

PreviousTransaction request

Last updated 1 year ago

As a dApp, you may want to check the status of a certain request in order to adapt your frontend. To achieve this, CKBull Signer API has two prepared endpoints to obtain the status of a request.

Sign in request polling

A simple endpoint to obtain the status of a sign in request by its token.

Transaction request polling

A simple endpoint to obtain the status of a transaction request by its token.

As mentioned in , a sign in request can have the following status: pending, expired, signed, declined or session expired.

As mentioned in , a sign in request can have the following status: pending, expired, signed, declined.

Guides and concepts
Guides and concepts
get
Path parameters
signInTokenstringRequired

Sign in request identifier

Header parameters
Content-TypestringRequired

application/json

Default: application/json
Responses
200Success
application/json
get
GET /api/sign-in-requests/{signInToken}/status HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
200Success
{
  "signInToken": "text",
  "status": "pending"
}
get
Path parameters
transactionTokenstringRequired

Transaction request identifier

Header parameters
Content-TypestringRequired

application/json

Default: application/json
Responses
200Success
application/json
get
GET /api/transaction-request/{transactionToken}/status HTTP/1.1
Host: 
Content-Type: application/json
Accept: */*
200Success
{
  "transactionToken": "text",
  "status": "pending"
}
  • Sign in request polling
  • GET/api/sign-in-requests/{signInToken}/status
  • Transaction request polling
  • GET/api/transaction-request/{transactionToken}/status