Lithic · Schema

Retry Book Transfer Request

FinTechBaaSCard IssuingPaymentsEmbedded Finance

Properties

Name Type Description
retry_token string Customer-provided token that will serve as an idempotency token. This token will become the transaction token.
View JSON Schema on GitHub

JSON Schema

lithic-retry-book-transfer-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/retry_book_transfer_request",
  "title": "Retry Book Transfer Request",
  "type": "object",
  "properties": {
    "retry_token": {
      "description": "Customer-provided token that will serve as an idempotency token. This token will become the transaction token.",
      "format": "uuid",
      "type": "string"
    }
  },
  "required": [
    "retry_token"
  ]
}