Synctera · Schema

Response history

Response history object of the webhook request

FinTechBaaSBankingPaymentsCard IssuingKYC

Properties

Name Type Description
code integer Response code from the request
response_body string Response body from the request(Length more than 1024 will be trimmed)
response_time string Timestamp that the response is received
sent_time string Timestamp that the request is sent
View JSON Schema on GitHub

JSON Schema

synctera-response-history-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/response_history_item",
  "title": "Response history",
  "description": "Response history object of the webhook request",
  "properties": {
    "code": {
      "description": "Response code from the request",
      "type": "integer"
    },
    "response_body": {
      "description": "Response body from the request(Length more than 1024 will be trimmed)",
      "type": "string"
    },
    "response_time": {
      "description": "Timestamp that the response is received",
      "format": "date-time",
      "type": "string"
    },
    "sent_time": {
      "description": "Timestamp that the request is sent",
      "format": "date-time",
      "type": "string"
    }
  },
  "type": "object"
}