Stitch · JSON Structure

Stitch Payment Structure

GraphQL response structure for a Stitch payment initiation request.

Type: Properties: 0
AfricaFinancial DataOpen BankingPaymentsUnified APISouth AfricaNigeria

Stitch Payment Structure is a JSON Structure definition published by Stitch.

Meta-schema:

JSON Structure

Raw ↑
{
  "title": "Stitch Payment Initiation Response Structure",
  "description": "GraphQL response structure for a Stitch payment initiation request.",
  "structure": {
    "data": {
      "type": "object",
      "fields": {
        "clientPaymentInitiationRequestCreate": {
          "type": "object",
          "fields": {
            "paymentInitiationRequest": {
              "type": "object",
              "fields": {
                "id": { "type": "string", "description": "Payment request ID." },
                "url": { "type": "string", "description": "Payer redirect URL." },
                "status": { "type": "string", "description": "Payment status." }
              }
            }
          }
        }
      }
    },
    "errors": {
      "type": "array",
      "description": "GraphQL errors if any.",
      "items": {
        "message": { "type": "string" },
        "extensions": { "type": "object" }
      }
    }
  }
}