Properties
| Name | Type | Description |
|---|---|---|
| active | boolean | Current status of the Authorization gateway |
| card_products | array | List of Card Product unique identifiers that will utilize the Gateway |
| creation_time | string | The timestamp representing when the gateway config request was made |
| custom_headers | object | |
| id | string | Gateway ID |
| last_modified_time | string | The timestamp representing when the gateway config was last modified at |
| url | string | URL of the Authorization gateway |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/gateway_response",
"title": "gateway_response",
"properties": {
"active": {
"description": "Current status of the Authorization gateway",
"type": "boolean"
},
"card_products": {
"description": "List of Card Product unique identifiers that will utilize the Gateway",
"items": {
"example": "a9bb2628-8d5c-476a-a78e-d32ebcabbd6f",
"format": "uuid",
"type": "string"
},
"type": "array"
},
"creation_time": {
"description": "The timestamp representing when the gateway config request was made",
"example": "Fri Dec 17 2021 13:15:51 GMT+0000 (Coordinated Universal Time)",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"custom_headers": {
"$ref": "#/components/schemas/gateway_custom_headers"
},
"id": {
"description": "Gateway ID",
"example": "05da0ba1-0532-4805-9afd-bc09e0291bab",
"format": "uuid",
"type": "string"
},
"last_modified_time": {
"description": "The timestamp representing when the gateway config was last modified at",
"example": "Sun Oct 17 2021 01:02:09 GMT+0000 (Coordinated Universal Time)",
"format": "date-time",
"readOnly": true,
"type": "string"
},
"url": {
"description": "URL of the Authorization gateway",
"format": "uri",
"maxLength": 1000,
"type": "string"
}
},
"required": [
"id",
"active",
"url",
"card_products",
"creation_time",
"last_modified_time"
],
"type": "object"
}