- Created by user-5c3b0, last modified by user-e873e on Aug 14, 2020
A payment is a series of debit/credit entries that affect the asset and liability side of multiple ledgers. A typical payment consists of a payer (customer, buyer) and a payee (merchant), where the payer’s account is debited and payee’s account is credited.
{
"openapi": "3.0.1",
"info": {
"contact": {},
"version": "",
"title": ""
},
"tags": [
{
"name": "Payment Product"
},
{
"name": "Payment Transfer"
},
{
"name": "Resource Product"
},
{
"name": "Resource"
},
{
"name": "Form Factor Product"
},
{
"name": "Form Factor"
}
],
"paths": {
"/api/v1/ifi/{ifiID}/payment_products/{paymentProductID}": {
"get": {
"tags": [
"Payment Product"
],
"summary": "Get Payment Product by ID.",
"description": "Get the details of a particular Payment Product. The response returns Resource Product, status, code, and other related details.",
"operationId": "getPaymentProduct",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "paymentProductID",
"in": "path",
"description": "ID of the Payment Product whose details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "5291112c-4b42-4e92-a7db-c3fcf0f96b89"
}
}
],
"responses": {
"200": {
"description": "Returns Payment Product details",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/PaymentProdIDResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Payment product does not exist\r\n\r\n",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/payment_products/list": {
"post": {
"tags": [
"Payment Product"
],
"summary": "Get all Payment Products for Resource Product",
"description": "Get the details of all the Payment Products created under a Resource Product. The response returns a list, with status, code, and other relevant details for each Payment Product.",
"operationId": "filterPaymentProductUsingPOST",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "162612"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ListPaymentProductRequest"
}
}
},
"required": false
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ListPaymentProductResponse"
}
}
}
}
},
"x-codegen-request-body-name": "offset"
}
},
"/api/v1/ifi/{ifiID}/transfers": {
"post": {
"tags": [
"Payment Transfer"
],
"summary": "Transfer funds",
"description": "Transfer funds from Account to another. </br></br>_Important_: Each fund transfer must have a unique identifier, `requestID`.",
"operationId": "CreatefundTransfer",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": 140827
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/FundTransfersRequest"
}
}
},
"required": false
},
"responses": {
"200": {
"description": "Fund transfer successful",
"content": {
"application/json; charset=utf-8": {
"schema": {
"$ref": "#/components/schemas/FundTransfersResponse"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json; charset=utf-8": {
"schema": {
"$ref": "#/components/schemas/FundTransfer400Error"
}
}
}
}
},
"deprecated": false,
"x-codegen-request-body-name": "body"
}
},
"/api/v1/ifi/{ifiID}/resource_products/{resourceProductID}": {
"get": {
"tags": [
"Resource Product"
],
"summary": "Get Resource Product by ID",
"description": "Get the details of a particular Resource Product. The response returns policies, status, Form Factor Products, and other related details.",
"operationId": "getResourceProduct",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceProductID",
"in": "path",
"description": "ID of the Resource Product whose details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "7f2fbeb5-04f9-4b23-9565-46434c7a3969"
}
}
],
"responses": {
"200": {
"description": "Returns Resource Product details",
"content": {
"application/json; charset=utf-8": {
"schema": {
"$ref": "#/components/schemas/ResourceProductIDResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Resource product does not exist",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/payments/{paymentID}": {
"get": {
"tags": [
"Resource"
],
"summary": "Get payment for Resource by payment ID",
"description": "Every payment made using a Resource is identified by a `paymentID`. Call the API with this identifier to retrieve state transitions, receipts, value, and other related details for the payment. For example, you can retrieve details of a particular payment made using a pre-paid card.",
"operationId": "getPaymentUsingGET",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "integer",
"example": 140827
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resoure whose payment details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "b60fde11-64fd-47a8-a0b3-4c94edea626a"
}
},
{
"name": "paymentID",
"in": "path",
"description": "ID of the payment whose details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "285696000008"
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/GetPaymentResource"
}
}
}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/payments/list": {
"get": {
"tags": [
"Resource"
],
"summary": "Get all payments for Resource",
"description": "Get the details of all the payments made using a particular Resource. For example, you can get the details of all the payments made using a pre-paid card.",
"operationId": "getPaymentsByResourceIdUsingGET",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "integer",
"format": "int64",
"example": 140827
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource whose payment details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "b60fde11-64fd-47a8-a0b3-4c94edea626a"
}
},
{
"name": "startDate",
"in": "query",
"description": "Starting date in the format YYYY-MM-DD'T'HH:MM:SS.sss'Z'",
"required": true,
"schema": {
"type": "string",
"example": "2020-03-15%2000:00:00%2b00"
}
},
{
"name": "endDate",
"in": "query",
"description": "End date in the format YYYY-MM-DD'T'HH:MM:SS.sss'Z'",
"required": true,
"schema": {
"type": "string",
"example": "2020-04-21%2000:00:00%2b00"
}
},
{
"name": "limit",
"in": "query",
"description": "Number of records to be returned. Maximum allowed value is 20.",
"required": false,
"schema": {
"type": "integer",
"example": "5"
}
},
{
"name": "offset",
"in": "query",
"description": "Starting point of records to return. Used in conjunction with `limit`.",
"required": false,
"schema": {
"type": "integer",
"example": 5
}
}
],
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ListPaymentResponse"
}
}
}
}
},
"x-codegen-request-body-name": "offset"
}
},
"/api/v1/ifi/{ifiID}/resource_products/{resourceProductID}/resources/list": {
"post": {
"tags": [
"Resource"
],
"summary": "Get all Resources for Resource Product",
"description": "Get the details of all the Resources added under a particular Resource Product. The response returns a list, with Form Factor, Form Factor Product, Vectors, and other related details for each Resource.",
"operationId": "listResourcesPerResourceProduct",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceProductID",
"in": "path",
"description": "ID of the Resource Product whose Resources are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "7f2fbeb5-04f9-4b23-9565-46434c7a3969"
}
},
{
"name": "limit",
"in": "query",
"description": "Maximum number of results per page.",
"required": false,
"schema": {
"type": "integer"
}
},
{
"name": "offset",
"in": "query",
"description": "Starting position of the results. Use the parameter to retrieve a subset of results. Used in conjunction with `limit`.",
"required": false,
"schema": {
"type": "integer"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResourceIDListRequest"
}
}
}
},
"responses": {
"200": {
"description": "Returns a paginated list of Resources corresponding to a Resource Product ID",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResourceIDListResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}": {
"get": {
"tags": [
"Resource"
],
"summary": "Get Resource by ID",
"description": "Get the details of a particular Resource. The response returns Resource Product, Form Factor, Policies, and other related details.",
"operationId": "getResource",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource whose details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "98470506-1fc3-4d76-abdc-3be1300bf0ba"
}
}
],
"responses": {
"200": {
"description": "Returns Resource details",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResourceResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Resource does not exist",
"content": {}
}
}
},
"patch": {
"tags": [
"Resource"
],
"summary": "Update Resource status by ID",
"description": "Update the status of a particular Resource. You can activate, deactivate, or delete a Resource by changing its status. The following statuses are supported: `ACTIVE`, `INACTIVE`, `DELETED`.",
"operationId": "updateResourceInformation",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource whose status is updated.",
"required": true,
"schema": {
"type": "string",
"example": "a8e27abb-3490-4b4b-9a5f-82de543f8b96"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateResourceRequest"
}
}
}
},
"responses": {
"200": {
"description": "Returns the updated resource object.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResourceResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Resource does not exist",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/target": {
"patch": {
"tags": [
"Resource"
],
"summary": "Update Target linked to Resource",
"description": "Update the target Account linked to the Resource. For example, you can link an Account Holder's card to a different Account.",
"operationId": "updateLinkTargetToResource",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource being linked to the Account.",
"required": true,
"schema": {
"type": "string",
"example": "98470506-1fc3-4d76-abdc-3be1300bf0ba"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UpdateTargetRequest"
}
}
}
},
"responses": {
"201": {
"description": "Target updated for Resource",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResourceResponse"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"409": {
"description": "Target already linked to Resource",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/resourceByVector": {
"get": {
"tags": [
"Resource"
],
"summary": "Get Resource by Vector",
"description": "Get Resource details, including associated Form Factors, of an entity using its Vector details. Currently you can fetch details of an Account Holder.</br></br> You can filter the results using the `view` query parameter. The following views are supported: </br> <ul><li>BASIC: Default view. Returns details of all the active and inactive Form Factors associated with the Resource.</li><li>EXPANDED: Returns details of all the active, inactive, and deleted Form Factors associated with the Resource.</li></ul> ",
"operationId": "resourceInfoByVector",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "Unique identifier of the IFI",
"required": true,
"schema": {
"type": "integer",
"example": 140827
}
},
{
"name": "vectorType",
"in": "query",
"description": "The type of Vector against which Resource details are fetched. Allowed value:`ACCOUNTHOLDER`",
"required": true,
"schema": {
"type": "string",
"example": "ACCOUNTHOLDER"
}
},
{
"name": "vectorValue",
"in": "query",
"description": "Value of the Vector depending on the `vectorType` specified. Since, only Account Holder is currently supported, hence specify Account Holder ID here.",
"required": true,
"schema": {
"type": "string",
"example": "fce453f4-6e33-4aa0-b01e-dd702681ad32"
}
},
{
"name": "view",
"in": "query",
"description": "Filter the results using this parameter. BASIC is the default view and returns details of all the active and inactive Form Factors associated with the Resource. EXPANDED view returns details of all the active, inactive and deleted Form Factors associated with the Resource. ",
"schema": {
"type": "string",
"example": "EXPANDED"
}
}
],
"responses": {
"200": {
"description": "Returns Resource details in BASIC view",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ResourceResponse"
}
}
}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/vectors": {
"post": {
"tags": [
"Resource"
],
"summary": "Add Vector to Resource",
"description": "Add a new Vector to an existing Resource. Examples of Vectors are phone number and email ID. </br></br>_Note:_ You can also use the API to link a Resource to an Account Holder.",
"operationId": "addResourceVectorUsingPOST",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI",
"required": true,
"schema": {
"type": "integer",
"example": 140827
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resoure to which the Vector is added.",
"required": true,
"schema": {
"type": "string"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AddVector"
}
}
},
"required": true
},
"responses": {
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ResourceResponse"
}
}
}
}
},
"x-codegen-request-body-name": "vector"
}
},
"/api/v1/ifi/{ifiID}/form_factor_products/{formFactorProductID}": {
"get": {
"tags": [
"Form Factor Product"
],
"summary": "Get Form Factor Product by ID",
"description": "Get the details of a particular Form Factor Product created under an IFI. The response returns issuance and payment status, policies, code, and other related details.",
"operationId": "getFormFactorProduct",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "formFactorProductID",
"in": "path",
"description": "ID of the Form Factor whose details are retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "0397e382-c9a7-4738-b366-ea5b4d635dc4"
}
}
],
"responses": {
"200": {
"description": "Returns Form Factor Product",
"content": {
"application/json; charset=utf-8": {
"schema": {
"$ref": "#/components/schemas/FormFactorProductResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Form Factor Product does not exist",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/form_factors/create": {
"post": {
"summary": "Create and associate Form Factor with Resource.",
"description": "Create a new Form Factor and associate it with an existing Resource.",
"tags": [
"Form Factor"
],
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "162612"
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource with which the Form Factor is associated.",
"required": true,
"schema": {
"type": "string",
"example": "f3b755da-3167-46f7-890e-5d38137858ee"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateFormFactorRequest"
}
}
}
},
"responses": {
"200": {
"description": "Returns the updated resource and form factor information.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateFormFactorResponse"
}
}
}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/form_factors": {
"post": {
"tags": [
"Form Factor"
],
"summary": "Associate Form Factor with Resource",
"description": "Associate a Form Factor with a Resource. For example, you can map a new pre-paid card to an Account Holder.",
"operationId": "associateFormFactorResource",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceID",
"description": "ID of the Resource with which the Form Factor is associated.",
"in": "path",
"required": true,
"schema": {
"type": "string",
"example": "3d683159-ce0e-47cd-a95f-c3198199d353"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/AssociateFormFactor"
}
}
},
"required": true
},
"responses": {
"200": {
"description": " ",
"content": {}
},
"401": {
"description": "Unauthorized",
"content": {}
}
}
}
},
"/api/v1/ifi/{ifiID}/resources/{resourceID}/form_factors/{formFactorID}": {
"get": {
"tags": [
"Form Factor"
],
"summary": "Get Form Factor by ID",
"description": "Get the details of a particular Form Factor. The response returns Form Factor Product, status, policies, and other related details.",
"operationId": "getResourceFormFactor",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource whose Form Factor is retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "455ad34f-7fef-45a8-bfc0-eb681d38a27d"
}
},
{
"name": "formFactorID",
"in": "path",
"description": "ID of the Form Factor being retrieved.",
"required": true,
"schema": {
"type": "string",
"example": "a390fca1-1a87-4db3-81a0-1afe57560152"
}
}
],
"responses": {
"200": {
"description": "Returns Resource Form Factor details.",
"content": {
"application/json; charset=utf-8": {
"schema": {
"$ref": "#/components/schemas/FormFactorIDResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Resource Form Factor does not exist.",
"content": {}
}
}
},
"patch": {
"tags": [
"Form Factor"
],
"summary": "Activate/Deactivate/Delete Form Factor by ID",
"description": "Activate, deactivate or delete a Form Factor by changing its status. Examples of Form Factors include card and phone number. Please note that if you are deleting the Form Factor, specifying the reason (request body parameter) is required.</br></br>To get the Resource ID and Form Factor ID for card, call the `/orders/{orderID}/cards/list` endpoint. The response returns an array of all the cards in the order with each card's ID and Resource ID. `cardID` provides the value for Form Factor ID, and note the Resource ID from `uri:resource://{resourceID}` parameter.",
"operationId": "updateFormFactorInfo",
"parameters": [
{
"name": "ifiID",
"in": "path",
"description": "ID of the IFI.",
"required": true,
"schema": {
"type": "string",
"example": "140827"
}
},
{
"name": "resourceID",
"in": "path",
"description": "ID of the Resource with which the Form Factor is associated.",
"required": true,
"schema": {
"type": "string",
"example": "455ad34f-7fef-45a8-bfc0-eb681d38a27d"
}
},
{
"name": "formFactorID",
"in": "path",
"description": "ID of the Form Factor being activated/deactivated/deleted.",
"required": true,
"schema": {
"type": "string",
"example": "a390fca1-1a87-4db3-81a0-1afe57560152"
}
}
],
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/updateFormFactorRequest"
}
}
}
},
"responses": {
"200": {
"description": "Returns the updated form factor data object for the specific resource.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/updateFormFactorResponse"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {}
},
"404": {
"description": "Form Factor for the specific resource does not exist",
"content": {}
}
}
}
}
},
"components": {
"schemas": {
"CreateFormFactorRequest": {
"type": "object",
"properties": {
"formFactorProductID": {
"type": "string"
},
"orderDetails": {
"$ref": "#/components/schemas/OrderDetails"
},
"targetURI": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"vectors": {
"type": "array",
"items": {
"type": "string"
}
}
},
"example": {
"formFactorProductID": "6209f035-9228-4050-b7d2-f4373833a5ed",
"orderDetails": {
"orderID": "string",
"cardSkuID": "RUPAY_IDFC_VBO_PHYSICAL",
"expiry": {
"month": 1,
"year": 25
},
"deliveryAddress": {
"name": "Farzan",
"addressLine1": "MG Road",
"addressLine2": "",
"addressLine3": "",
"addressLine4": "",
"city": "Bangalore",
"state": "Karnataka",
"country": "IN",
"postalCode": "560095",
"contactNumber": "+919867962795"
}
},
"targetURI": "account://123Provision1",
"status": "ACTIVE",
"vectors": [
"vector://ACCOUNTHOLDER/f5881e97-6646-490a-8d6b-caf780046cfe"
]
}
},
"CreateFormFactorResponse": {
"type": "object",
"properties": {
"resource": {
"$ref": "#/components/schemas/ResourceResponse"
}
},
"example": {
"resource": {
"ifi": 140827,
"id": "84db425c-63b6-43d0-89a8-4c9dbb9fb784",
"resourceProductId": "d146a54d-b63f-49e6-a09d-1a6479026963",
"resourceProduct": {
"ifi": 140827,
"id": "d146a54d-b63f-49e6-a09d-1a6479026963",
"code": "RP_594",
"name": "RESOURCE PRODUCT",
"description": "Resource Product ",
"formFactorProducts": [
{
"ifi": 140827,
"id": "6209f035-9228-4050-b7d2-f4373833a5ed",
"code": "CMSTEST44071",
"name": "IDFC Form Factor Test 44071",
"description": "Form Factor Test for IDFC",
"type": "card",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "CMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Aug 10, 2020 10:56:39 AM",
"modifiedAt": "Aug 10, 2020 10:56:39 AM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
},
{
"ifi": 140827,
"id": "a67903be-e468-4590-b83b-5b74387d39e9",
"code": "CMSTEST2488",
"name": "IDFC Form Factor Test 2488",
"description": "Form Factor Test for IDFC",
"type": "phoneNumber",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "PMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Aug 10, 2020 10:56:41 AM",
"modifiedAt": "Aug 10, 2020 10:56:41 AM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
}
],
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Aug 10, 2020 10:56:43 AM",
"modifiedAt": "Aug 10, 2020 10:56:43 AM",
"headers": {}
},
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"formFactors": [
{
"id": "a55f74c3-25ac-4abe-892c-b3363bb9157b",
"ifi": 140827,
"formFactorProductID": "6209f035-9228-4050-b7d2-f4373833a5ed",
"formFactorID": "fd552ad9-b142-482d-ad6c-539a0799ffb2",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Aug 13, 2020 9:08:58 AM",
"modifiedAt": "Aug 13, 2020 9:08:58 AM",
"headers": {}
},
{
"id": "a903707e-c171-4cb5-b089-49036022c6de",
"ifi": 140827,
"formFactorProductID": "6209f035-9228-4050-b7d2-f4373833a5ed",
"formFactorID": "cd8f08b0-6de8-419e-a5f5-edce37639805",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Aug 11, 2020 7:55:42 AM",
"modifiedAt": "Aug 11, 2020 7:55:42 AM",
"headers": {}
},
{
"id": "d8dda0f4-7b44-480f-b837-5a96cc94fc2c",
"ifi": 140827,
"formFactorProductID": "6209f035-9228-4050-b7d2-f4373833a5ed",
"formFactorID": "73abcc8d-8f45-451d-92e4-1ca03d153321",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Aug 13, 2020 9:09:14 AM",
"modifiedAt": "Aug 13, 2020 9:09:14 AM",
"headers": {}
},
{
"id": "dd458050-e4b4-48f1-98e8-8978f56e5549",
"ifi": 140827,
"formFactorProductID": "6209f035-9228-4050-b7d2-f4373833a5ed",
"formFactorID": "f9b5583c-715c-4a04-ad5f-cb0ac8511be0",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Aug 13, 2020 9:36:36 AM",
"modifiedAt": "Aug 13, 2020 9:36:36 AM",
"headers": {}
},
{
"id": "dd705995-ba2b-4e02-8580-c060b41a7d40",
"ifi": 140827,
"formFactorProductID": "a67903be-e468-4590-b83b-5b74387d39e9",
"formFactorID": "+919730865998",
"targetURI": "account://71227305-whatMobile2",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Aug 11, 2020 7:55:42 AM",
"modifiedAt": "Aug 11, 2020 7:55:42 AM",
"headers": {}
}
],
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"vectors": [
"vector://ACCOUNTHOLDER/82225841-80e4-47c4-9a29-4ed69e1519d5"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"attributes": {},
"status": "ACTIVE",
"createdAt": "Aug 11, 2020 7:55:42 AM",
"modifiedAt": "Aug 11, 2020 7:55:42 AM",
"headers": {}
},
"provisionFormFactorResponse": {
"resourceId": "resource://84db425c-63b6-43d0-89a8-4c9dbb9fb784",
"cardID": "f9b5583c-715c-4a04-ad5f-cb0ac8511be0",
"crn": "146901773705",
"cardType": "PHYSICAL_RUPAY_SUPERCARD",
"maskedPan": "508645-xxxxxx-4633",
"network": "RUPAY",
"cardStatus": "ACTIVE"
},
"headers": {}
}
},
"Resource": {
"title": "Resource",
"type": "object",
"properties": {
"attributes": {
"type": "object",
"properties": {}
},
"authProfileId": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"formFactors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FormFactor"
}
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"id": {
"type": "string"
},
"ifi": {
"type": "integer",
"format": "int64"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"policies": {
"$ref": "#/components/schemas/Policies"
},
"requestId": {
"type": "string"
},
"resourceProduct": {
"$ref": "#/components/schemas/ResourceProduct"
},
"resourceProductId": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"targetURI": {
"type": "string"
},
"vectors": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"OrderDetails": {
"title": "OrderDetails",
"type": "object",
"properties": {
"cardSku": {
"$ref": "#/components/schemas/CardSku"
},
"cardSkuID": {
"type": "string"
},
"deliveryAddress": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"embossedAt": {
"type": "string",
"format": "date-time"
},
"expiry": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"fourthLineEmbossing": {
"type": "string"
},
"orderID": {
"type": "string"
},
"orderStatus": {
"type": "string"
},
"orderedAt": {
"type": "string",
"format": "date-time"
},
"plasticCode": {
"type": "string"
},
"tenantAttributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"thirdLineEmbossing": {
"type": "string"
},
"vendorAttributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"CardSku": {
"title": "CardSku",
"type": "object",
"properties": {
"bin": {
"type": "string"
},
"binRange": {
"type": "string"
},
"cardSkuId": {
"type": "string"
},
"ifi": {
"type": "string"
},
"plasticCode": {
"type": "string"
},
"productID": {
"type": "string"
},
"range": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"vendorID": {
"type": "string"
}
}
},
"UpdateResourceRequest": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
}
},
"example": {
"status": "ACTIVE"
}
},
"UpdateTargetRequest": {
"type": "object",
"properties": {
"target": {
"type": "string"
}
},
"example": {
"target": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1"
}
},
"updateFormFactorRequest": {
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"reason": {
"type": "object",
"properties": {
"code": {
"type": "string"
},
"description": {
"type": "string"
}
}
}
},
"example": {
"status": "ACTIVE",
"reason": {
"code": "DAMAGED",
"description": "User card was lost/stolen"
}
}
},
"updateFormFactorResponse": {
"type": "object",
"properties": {
"": {
"$ref": "#/components/schemas/FormFactor"
}
},
"example": {
"id": "a390fca1-1a87-4db3-81a0-1afe57560152",
"ifi": 140827,
"formFactorProductID": "66abce21",
"formFactorID": "57cdddc5-5793-4754-afa1-79fe00be0913",
"targetURI": "account://054e2a66-d668-4164-a512-06588a0458e9",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "INACTIVE",
"createdAt": "Apr 11, 2020 2:16:36 PM",
"modifiedAt": "Aug 11, 2020 4:23:33 PM",
"headers": {}
}
},
"AssociateFormFactor": {
"type": "object",
"properties": {
"formFactorProductID": {
"type": "string"
},
"formFactorID": {
"type": "string"
},
"targetURI": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
}
},
"example": {
"formFactorProductID": "1533e62d-f114-4cc8-80e9-8a79451d9074",
"formFactorID": "ca606cca-7cb3-48e2-8d55-dcb10987a399",
"targetURI": "account://71227305-whatMobile2",
"status": "ACTIVE"
}
},
"ListPaymentResponse": {
"title": "ListPaymentResponse",
"type": "object",
"properties": {
"": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Payment"
}
}
},
"example": [
{
"id": 287513008694,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_REQUEST_DECLINED",
"value": {
"currency": "INR",
"amount": 1
},
"stateTransitions": {
"PAYMENT_AUTHORIZATION_REQUESTED": 1586249888789,
"PAYMENT_REQUESTED": 1586249888498,
"PAYMENT_REQUEST_DECLINED": 1586249888852
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200407085808_665739718414_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 1
}
],
"dueBy": 1586251088429,
"towards": "Physical Super Card ECOM Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.ink": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "665739718414",
"super-card.tid": "T00001",
"super-card.stan": "379377",
"super-card.card-id": "59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_ECOM_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_111111_379377_665739718414_200407085808",
"super-card.txn-type": "ECOM",
"super-card.acs-txnId": "480948162940286816335917227117",
"super-card.init-time": "200407085808",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [],
"error": {
"Code": "AUTHENTICATION_FAILED",
"details": {
"message": "Resource Authentication Failed",
"errorCode": "AUTHENTICATION_FAILED"
}
},
"attributes": {},
"headers": {}
},
{
"id": 287053001811,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585819085135,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585819084614,
"PAYMENT_REQUESTED": 1585819083850,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585819084663,
"PAYMENT_CAPTURED": 1585819085295
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200402091802_726441211856_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585820283787,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "726441211856",
"super-card.tid": "T00001",
"super-card.stan": "379363",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379363_726441211856",
"super-card.txn-type": "POS",
"super-card.init-time": "200402091802",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "85d55605-b7ce-49c1-889c-265e4ce618a6",
"paymentRequestID": "T00001_111111_200402091802_726441211856_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 287053001811,
"transactionHash": "oc779g==",
"transactionCode": "557213",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585819085098,
"debits": [
{
"postingID": "849836",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3589
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "dca3f7e7-f09b-4c49-b65c-7c7a4583c48b"
}
]
}
],
"credits": [
{
"postingID": "516528",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686108
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "726441211856",
"super-card.tid": "T00001",
"super-card.stan": "379363",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379363_726441211856",
"super-card.txn-type": "POS",
"super-card.init-time": "200402091802",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRAIgOCsK1XAibXCmoGLF/FGlcJCF0TbKaMDgfPu8dWWd87YCIAsXPIgFMKh5+lcXjDrR0k5GWxix9tID4x+eydoc3I3W",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "85d55605-b7ce-49c1-889c-265e4ce618a6",
"paymentRequestID": "T00001_111111_200402091802_726441211856_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 287053001811,
"transactionHash": "oc779g==",
"transactionCode": "557213",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585819085294,
"debits": [
{
"postingID": "849836",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3589
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "dca3f7e7-f09b-4c49-b65c-7c7a4583c48b"
}
]
}
],
"credits": [
{
"postingID": "516528",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686108
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "726441211856",
"super-card.tid": "T00001",
"super-card.stan": "379363",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379363_726441211856",
"super-card.txn-type": "POS",
"super-card.init-time": "200402091802",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhAL2Ufr4MoEeQ5IHSWK7o7Bx2Qx5Gb1C4fAgES664yueIAiBzULq1UxeNTW3VD5k9gPDxB/M4SSkWzaUbFcB/OwkqWw==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 286886000336,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_REVERSED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585754903471,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585754903030,
"PAYMENT_REQUESTED": 1585754902825,
"PAYMENT_REVERSED": 1585755042195,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585754903067,
"PAYMENT_CAPTURED": 1585754903552,
"REVERSAL_INITIATED": 1585755042051
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200401152822_614033201332_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585756102800,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "614033201332",
"super-card.tid": "T00001",
"super-card.stan": "379361",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379361_614033201332",
"super-card.txn-type": "POS",
"super-card.init-time": "200401152822",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "dba60f39-a043-498a-9e19-8e32f26a47fa",
"paymentRequestID": "T00001_111111_200401152822_614033201332_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 286886000336,
"transactionHash": "Z9hbdw==",
"transactionCode": "566083",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585754903462,
"debits": [
{
"postingID": "849834",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3589
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "cef7b7f0-95f1-4e87-8692-de88c527afa9"
}
]
}
],
"credits": [
{
"postingID": "516526",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686108
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "614033201332",
"super-card.tid": "T00001",
"super-card.stan": "379361",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379361_614033201332",
"super-card.txn-type": "POS",
"super-card.init-time": "200401152822",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhAIU9dsa7HwC7bp3sQctxjmilEUtaEwfVmdCwdekIXdrBAiAl0SCQzDHxBvf0bbmSW1PSxktX95SbYh/pGzixic1ILw==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "dba60f39-a043-498a-9e19-8e32f26a47fa",
"paymentRequestID": "T00001_111111_200401152822_614033201332_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 286886000336,
"transactionHash": "Z9hbdw==",
"transactionCode": "566083",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585754903550,
"debits": [
{
"postingID": "849834",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3589
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "cef7b7f0-95f1-4e87-8692-de88c527afa9"
}
]
}
],
"credits": [
{
"postingID": "516526",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686108
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "614033201332",
"super-card.tid": "T00001",
"super-card.stan": "379361",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379361_614033201332",
"super-card.txn-type": "POS",
"super-card.init-time": "200401152822",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhAP6HBtdRitBjURetNJbV9W9FmBqA3sRE/du6kf2k2OZQAiBJKdIDqzh5YODFUnEQi2QPjSyT3ToUbYTVL71PqfflfQ==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "REVERSAL",
"paymentID": "dba60f39-a043-498a-9e19-8e32f26a47fa",
"receiptID": 286878000155,
"transactionHash": "FKGFdw==",
"paymentFrom": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585755042193,
"debits": [
{
"postingID": "516527",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686008
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"credits": [
{
"postingID": "849835",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3689
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": []
}
],
"towards": "Reversal",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "614033201332",
"super-card.tid": "T00001",
"super-card.stan": "379361",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379361_614033201332",
"super-card.txn-type": "POS",
"super-card.init-time": "200401152822",
"paymentReceipt.time.IST": "Apr 01,2020 20:58:23",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"reversedReceiptID": 286886000336,
"headers": {
"signature": "AAHQ7ygwRAIgX6lcxFMHptacKZcW1n11d/PsEe9ZIXaJKHDj7y+rv/kCICh5E23gMrOYnGizd+n8bRp5jljmHntVYxvTq92b/Q/F",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 286878000122,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585752966406,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585752966051,
"PAYMENT_REQUESTED": 1585752965619,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585752966093,
"PAYMENT_CAPTURED": 1585752966481
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200401145605_609062336150_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585754165592,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "609062336150",
"super-card.tid": "T00001",
"super-card.stan": "379355",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379355_609062336150",
"super-card.txn-type": "POS",
"super-card.init-time": "200401145605",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "6c194ab7-2d6a-4fce-a0f8-9af116af44cf",
"paymentRequestID": "T00001_111111_200401145605_609062336150_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 286878000122,
"transactionHash": "nrl0nw==",
"transactionCode": "709880",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585752966399,
"debits": [
{
"postingID": "849833",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3689
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "13fc7771-0eb4-493f-a17f-835aa140b6ea"
}
]
}
],
"credits": [
{
"postingID": "516521",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686008
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "609062336150",
"super-card.tid": "T00001",
"super-card.stan": "379355",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379355_609062336150",
"super-card.txn-type": "POS",
"super-card.init-time": "200401145605",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIgKvleVIaFrXWnA/Ut+cGXmpq/kolEDf9YFVfd7/GuU8ICIQCLSC1Tf1MrPXpcQZF2umdUNsgvutTm39rkQLp368FNOQ==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "6c194ab7-2d6a-4fce-a0f8-9af116af44cf",
"paymentRequestID": "T00001_111111_200401145605_609062336150_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 286878000122,
"transactionHash": "nrl0nw==",
"transactionCode": "709880",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585752966479,
"debits": [
{
"postingID": "849833",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3689
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "13fc7771-0eb4-493f-a17f-835aa140b6ea"
}
]
}
],
"credits": [
{
"postingID": "516521",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 686008
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "609062336150",
"super-card.tid": "T00001",
"super-card.stan": "379355",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379355_609062336150",
"super-card.txn-type": "POS",
"super-card.init-time": "200401145605",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhALDsw0ZIw5TwF3KV0vYgR4y79v4WS5WOhBvaphWKTBl1AiADsEc4gidjEB79wmuqLSk8pigXSsi1JLlAmFgFxhdNSg==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 286886000221,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585749753620,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585749753100,
"PAYMENT_REQUESTED": 1585749749811,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585749753143,
"PAYMENT_CAPTURED": 1585749753785
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200401140229_294507876043_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585750949776,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "294507876043",
"super-card.tid": "T00001",
"super-card.stan": "379351",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379351_294507876043",
"super-card.txn-type": "POS",
"super-card.init-time": "200401140229",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "00d1113f-254b-40d5-aeb5-96384657b4f8",
"paymentRequestID": "T00001_111111_200401140229_294507876043_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 286886000221,
"transactionHash": "yNSPtg==",
"transactionCode": "502381",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585749753595,
"debits": [
{
"postingID": "849832",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3789
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "dc320ad4-9532-47e4-8b24-e73859b2f158"
}
]
}
],
"credits": [
{
"postingID": "516518",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685708
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "294507876043",
"super-card.tid": "T00001",
"super-card.stan": "379351",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379351_294507876043",
"super-card.txn-type": "POS",
"super-card.init-time": "200401140229",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhANTqPr9EHIiyd8kN9ZeeVxEif1qsFPw/4G87aF40WAGQAiAlmzbKGVya6C/yk7eR6KVLioEOsx8RRVBh1ChskjLGSg==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "00d1113f-254b-40d5-aeb5-96384657b4f8",
"paymentRequestID": "T00001_111111_200401140229_294507876043_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 286886000221,
"transactionHash": "yNSPtg==",
"transactionCode": "502381",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585749753782,
"debits": [
{
"postingID": "849832",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3789
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "dc320ad4-9532-47e4-8b24-e73859b2f158"
}
]
}
],
"credits": [
{
"postingID": "516518",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685708
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "294507876043",
"super-card.tid": "T00001",
"super-card.stan": "379351",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_379351_294507876043",
"super-card.txn-type": "POS",
"super-card.init-time": "200401140229",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhAPxaoMUJ/2ZijfQfGFLkb0grYnyH8KpIKpFzgf2jzR84AiAVO2jXg/p0he96rvUauRzdIZ0/o7ySGNDYrYufQg3fZQ==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 285788000934,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585321120468,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585321119415,
"PAYMENT_REQUESTED": 1585321119271,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585321119459,
"PAYMENT_CAPTURED": 1585321120562
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200327145839_691592170596_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585322319223,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "691592170596",
"super-card.tid": "T00001",
"super-card.stan": "585993",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_585993_691592170596",
"super-card.txn-type": "POS",
"super-card.init-time": "200327145839",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "81f0c2ce-6afe-4187-8617-3ce511bfc9f3",
"paymentRequestID": "T00001_111111_200327145839_691592170596_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285788000934,
"transactionHash": "e/payA==",
"transactionCode": "039181",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585321120459,
"debits": [
{
"postingID": "849829",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3990
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "5812af74-f1dd-460c-bcf5-3b04380eb382"
}
]
}
],
"credits": [
{
"postingID": "516515",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685507
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "691592170596",
"super-card.tid": "T00001",
"super-card.stan": "585993",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_585993_691592170596",
"super-card.txn-type": "POS",
"super-card.init-time": "200327145839",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIgfBHnW0uJu20PSod6BDtNePYBwwdUOrSi5EJp1RX7C5cCIQDCEtCEY3rb7FL78VIle1gkA+cBFNtkrcIUrQrswQLg2Q==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "81f0c2ce-6afe-4187-8617-3ce511bfc9f3",
"paymentRequestID": "T00001_111111_200327145839_691592170596_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285788000934,
"transactionHash": "e/payA==",
"transactionCode": "039181",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585321120550,
"debits": [
{
"postingID": "849829",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 3990
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "5812af74-f1dd-460c-bcf5-3b04380eb382"
}
]
}
],
"credits": [
{
"postingID": "516515",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685507
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "691592170596",
"super-card.tid": "T00001",
"super-card.stan": "585993",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_585993_691592170596",
"super-card.txn-type": "POS",
"super-card.init-time": "200327145839",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRgIhAKCmpIs16L84NlEIwjrLIL+73PL6rYlZsfQ7kNpR8YsbAiEAn+8wUQ7xhPfzM1FQ7b9wM5CxY8J2k5uy1zeqH+B0x2I=",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 285696000008,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585158596564,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585158595645,
"PAYMENT_REQUESTED": 1585158595011,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585158595702,
"PAYMENT_CAPTURED": 1585158596749
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200325174954_360343071373_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585159794974,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "360343071373",
"super-card.tid": "T00001",
"super-card.stan": "800656",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800656_360343071373",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174954",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "a62a9ed5-1185-418d-b035-3e3922e264d3",
"paymentRequestID": "T00001_111111_200325174954_360343071373_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285696000008,
"transactionHash": "AqrILw==",
"transactionCode": "142003",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585158596390,
"debits": [
{
"postingID": "849826",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4191
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "78bef2a6-8e90-4301-90b4-4ccf1e417da2"
}
]
}
],
"credits": [
{
"postingID": "516508",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685104
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "360343071373",
"super-card.tid": "T00001",
"super-card.stan": "800656",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800656_360343071373",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174954",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhAIuHozivJQTZ5mP6UxhQ+n6TxKi7imDa7xxGkSR/ldZCAiBIGiTD4o5O68jJkihbNztf5hF0pADNylYbH4iZrV85ow==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "a62a9ed5-1185-418d-b035-3e3922e264d3",
"paymentRequestID": "T00001_111111_200325174954_360343071373_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285696000008,
"transactionHash": "AqrILw==",
"transactionCode": "142003",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585158596744,
"debits": [
{
"postingID": "849826",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4191
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "78bef2a6-8e90-4301-90b4-4ccf1e417da2"
}
]
}
],
"credits": [
{
"postingID": "516508",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685104
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "360343071373",
"super-card.tid": "T00001",
"super-card.stan": "800656",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800656_360343071373",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174954",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRgIhAOGdcbAVyyPCYetnL/ZhwMvVi3mBSdwYefroycFMbg2DAiEAh0SkmtTS1gZP1wz4YVl5vzUzkh8KPj9vnzzInLM5l9I=",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 285695000003,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1585158460801,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585158460127,
"PAYMENT_REQUESTED": 1585158459234,
"PAYMENT_AUTHORIZATION_RECEIVED": 1585158460194,
"PAYMENT_CAPTURED": 1585158461804
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200325174739_792856618659_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585159659113,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "792856618659",
"super-card.tid": "T00001",
"super-card.stan": "800655",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800655_792856618659",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174739",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "6bc0fc99-7620-4b46-9530-9e5f18634df4",
"paymentRequestID": "T00001_111111_200325174739_792856618659_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285695000003,
"transactionHash": "P1yApQ==",
"transactionCode": "241264",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585158460757,
"debits": [
{
"postingID": "849825",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4291
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "9ab5d388-0bd6-4d29-8655-6d5babfe4b92"
}
]
}
],
"credits": [
{
"postingID": "516507",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685004
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "792856618659",
"super-card.tid": "T00001",
"super-card.stan": "800655",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800655_792856618659",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174739",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRgIhALV6vzkATJMmbGzROHACwAGcxP5q8YZymY1J5x6gLrcdAiEAig+GWCbcsZogoaCBbAWqIPc4BVyKPCO9UVqDgUEC8t4=",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "6bc0fc99-7620-4b46-9530-9e5f18634df4",
"paymentRequestID": "T00001_111111_200325174739_792856618659_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285695000003,
"transactionHash": "P1yApQ==",
"transactionCode": "241264",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585158461798,
"debits": [
{
"postingID": "849825",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4291
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "9ab5d388-0bd6-4d29-8655-6d5babfe4b92"
}
]
}
],
"credits": [
{
"postingID": "516507",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685004
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "792856618659",
"super-card.tid": "T00001",
"super-card.stan": "800655",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800655_792856618659",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174739",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRAIgZaAYU4kOvQClWftC4RWm3lPsuL2P1QGKBRJUYw9nQEECIEGiF35OsCY+dzK/VZeYizNqsJOGKGPflGjUVb8iyw7l",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 285073000001,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_EFFECTED": 1584634349716,
"PAYMENT_AUTHORIZATION_REQUESTED": 1584634348602,
"PAYMENT_REQUESTED": 1584634347710,
"PAYMENT_AUTHORIZATION_RECEIVED": 1584634348678,
"PAYMENT_CAPTURED": 1584634349895
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200319161227_894819297635_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1584635547593,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "894819297635",
"super-card.tid": "T00001",
"super-card.stan": "800647",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800647_894819297635",
"super-card.txn-type": "POS",
"super-card.init-time": "200319161227",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "f483990f-4357-4b04-b2d9-c9b63d391fc0",
"paymentRequestID": "T00001_111111_200319161227_894819297635_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285073000001,
"transactionHash": "JejvVQ==",
"transactionCode": "650297",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1584634349689,
"debits": [
{
"postingID": "849822",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4691
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "52953532-f531-4f99-850f-2f501f6f9b8b"
}
]
}
],
"credits": [
{
"postingID": "516501",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 684603
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "894819297635",
"super-card.tid": "T00001",
"super-card.stan": "800647",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800647_894819297635",
"super-card.txn-type": "POS",
"super-card.init-time": "200319161227",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhALe2GzvH1JFTufEpwkkNP0Ln5v0JHfovt7+yWaB4ixVZAiAwhVZOjVhak0130spkm7l4OcgTJAwe73Lb9iAfQHPURA==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "f483990f-4357-4b04-b2d9-c9b63d391fc0",
"paymentRequestID": "T00001_111111_200319161227_894819297635_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285073000001,
"transactionHash": "JejvVQ==",
"transactionCode": "650297",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1584634349888,
"debits": [
{
"postingID": "849822",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4691
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "52953532-f531-4f99-850f-2f501f6f9b8b"
}
]
}
],
"credits": [
{
"postingID": "516501",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 684603
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "894819297635",
"super-card.tid": "T00001",
"super-card.stan": "800647",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800647_894819297635",
"super-card.txn-type": "POS",
"super-card.init-time": "200319161227",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRgIhAPFaO3SvBPhKetb86Z4zBWVskIaf3o0fM9rrwaK4sJlsAiEAlHcoIhUaGgpIJotcZFPyO4uOziOChwM8xsg3Yg8kIf4=",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
},
{
"id": 285033000014,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_REQUEST_DECLINED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_AUTHORIZATION_REQUESTED": 1584621259794,
"PAYMENT_REQUESTED": 1584621259397,
"PAYMENT_REQUEST_DECLINED": 1584621260003
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200319123419_474848781878_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1584622459309,
"towards": "Physical Super Card ECOM Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.ink": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "474848781878",
"super-card.tid": "T00001",
"super-card.stan": "800646",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_ECOM_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_111111_800646_474848781878_200319123419",
"super-card.txn-type": "ECOM",
"super-card.acs-txnId": "481267379270240351150068942083",
"super-card.init-time": "200319123419",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [],
"error": {
"Code": "AUTHENTICATION_FAILED",
"details": {
"message": "Resource Authentication Failed",
"errorCode": "AUTHENTICATION_FAILED"
}
},
"attributes": {},
"headers": {}
}
]
},
"Payment": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"ifi": {
"type": "integer",
"format": "int64"
},
"requestChannelType": {
"type": "string",
"enum": [
"ZETA_POS",
"SUPER_CARD",
"COLLECT_CARD",
"COLLECT_CALL",
"ZETA_PAYMENT_PAGE",
"ZETA_USER_APP",
"ZETA_API",
"ZETA_EXPRESS_REMOTE",
"ZETA_EXPRESS_KIOSK",
"ZETA_SHADOW_CARD",
"ZETA_UNKNOWN",
"UPI",
"VOID",
"IMPS",
"NEFT"
]
},
"state": {
"type": "string",
"enum": [
"VOID",
"PAYMENT_REQUESTED",
"PAYMENT_AUTHORIZATION_REQUESTED",
"CHALLENGE_REQUIRED",
"CHALLENGE_SUBMITTED",
"PAYMENT_AUTHORIZATION_RECEIVED",
"PAYMENT_EFFECTED",
"PAYMENT_CAPTURED",
"REVERSAL_INITIATED",
"PAYMENT_REVERSED",
"PAYMENT_REQUEST_CANCELLED",
"PAYMENT_REQUEST_DECLINED",
"PAYMENT_REQUEST_FAILED",
"PAYMENT_DECLINED",
"PAYMENT_FAILED"
]
},
"value": {
"$ref": "#/components/schemas/Money"
},
"stateTransitions": {
"type": "object",
"additionalProperties": {
"type": "integer",
"format": "int64"
}
},
"payer": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"payee": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"paymentRequest": {
"$ref": "#/components/schemas/PublicPaymentRequestWrapper"
},
"receipts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Receipt"
}
},
"error": {
"$ref": "#/components/schemas/Error"
},
"attributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"GetPaymentResource": {
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"ifi": {
"type": "integer",
"format": "int64"
},
"requestChannelType": {
"type": "string",
"enum": [
"ZETA_POS",
"SUPER_CARD",
"COLLECT_CARD",
"COLLECT_CALL",
"ZETA_PAYMENT_PAGE",
"ZETA_USER_APP",
"ZETA_API",
"ZETA_EXPRESS_REMOTE",
"ZETA_EXPRESS_KIOSK",
"ZETA_SHADOW_CARD",
"ZETA_UNKNOWN",
"UPI",
"VOID",
"IMPS",
"NEFT"
]
},
"state": {
"type": "string",
"enum": [
"VOID",
"PAYMENT_REQUESTED",
"PAYMENT_AUTHORIZATION_REQUESTED",
"CHALLENGE_REQUIRED",
"CHALLENGE_SUBMITTED",
"PAYMENT_AUTHORIZATION_RECEIVED",
"PAYMENT_EFFECTED",
"PAYMENT_CAPTURED",
"REVERSAL_INITIATED",
"PAYMENT_REVERSED",
"PAYMENT_REQUEST_CANCELLED",
"PAYMENT_REQUEST_DECLINED",
"PAYMENT_REQUEST_FAILED",
"PAYMENT_DECLINED",
"PAYMENT_FAILED"
]
},
"value": {
"$ref": "#/components/schemas/Money"
},
"stateTransitions": {
"type": "object",
"additionalProperties": {
"type": "integer",
"format": "int64"
}
},
"payer": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"payee": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"paymentRequest": {
"$ref": "#/components/schemas/PublicPaymentRequestWrapper"
},
"receipts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Receipt"
}
},
"attributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"example": {
"id": 285696000008,
"ifi": 140827,
"requestChannelType": "SUPER_CARD",
"state": "PAYMENT_CAPTURED",
"value": {
"currency": "INR",
"amount": 100
},
"stateTransitions": {
"PAYMENT_AUTHORIZATION_RECEIVED": 1585158595702,
"PAYMENT_AUTHORIZATION_REQUESTED": 1585158595645,
"PAYMENT_EFFECTED": 1585158596564,
"PAYMENT_REQUESTED": 1585158595011,
"PAYMENT_CAPTURED": 1585158596749
},
"payer": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payee": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"paymentRequest": {
"paymentRequestID": "T00001_111111_200325174954_360343071373_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"requestFrom": "5425484178419227662@ledger.zeta.in",
"requestTo": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e",
"value": [
{
"currency": "INR",
"amount": 100
}
],
"dueBy": 1585159794974,
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "360343071373",
"super-card.tid": "T00001",
"super-card.stan": "800656",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800656_360343071373",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174954",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
}
},
"receipts": [
{
"receiptType": "AUTHORIZATION",
"paymentID": "a62a9ed5-1185-418d-b035-3e3922e264d3",
"paymentRequestID": "T00001_111111_200325174954_360343071373_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285696000008,
"transactionHash": "AqrILw==",
"transactionCode": "142003",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585158596390,
"debits": [
{
"postingID": "849826",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4191
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "78bef2a6-8e90-4301-90b4-4ccf1e417da2"
}
]
}
],
"credits": [
{
"postingID": "516508",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685104
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "360343071373",
"super-card.tid": "T00001",
"super-card.stan": "800656",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800656_360343071373",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174954",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRQIhAIuHozivJQTZ5mP6UxhQ+n6TxKi7imDa7xxGkSR/ldZCAiBIGiTD4o5O68jJkihbNztf5hF0pADNylYbH4iZrV85ow==",
"signatoryJID": "11@zetauser.zeta.in/1"
}
},
{
"receiptType": "PAYMENT",
"paymentID": "a62a9ed5-1185-418d-b035-3e3922e264d3",
"paymentRequestID": "T00001_111111_200325174954_360343071373_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"receiptID": 285696000008,
"transactionHash": "AqrILw==",
"transactionCode": "142003",
"paymentTo": "5425484178419227662@ledger.zeta.in",
"time": 1585158596744,
"debits": [
{
"postingID": "849826",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 4191
},
"instrumentType": "MCC_VOUCHER_RECIPIENT",
"attributes": {},
"coupons": [
{
"value": {
"amount": 100,
"currency": "INR"
},
"couponID": "78bef2a6-8e90-4301-90b4-4ccf1e417da2"
}
]
}
],
"credits": [
{
"postingID": "516508",
"ifi": 140827,
"value": {
"currency": "INR",
"amount": 100
},
"newBalance": {
"currency": "INR",
"amount": 685104
},
"instrumentType": "SYSTEM",
"attributes": {},
"coupons": []
}
],
"towards": "Physical Super Card POS Purchase",
"attributes": {
"super-card.ifi": "140827",
"super-card.mcc": "5411",
"super-card.mid": "M00001",
"super-card.rrn": "360343071373",
"super-card.tid": "T00001",
"super-card.stan": "800656",
"super-card.card-id": "resource://b60fde11-64fd-47a8-a0b3-4c94edea626a_59dc47e8-65e1-49e9-ad2b-39028479c69e",
"journal.voucherCode": "RUPAY-508645_POS_AUTH",
"payment.channelType": "SUPER_CARD",
"super-card.acquirer": "111111",
"super-card.card-6x4": "508645-xxxxxx-7801",
"super-card.card-bin": "508645",
"super-card.trans-id": "M00001_T00001_800656_360343071373",
"super-card.txn-type": "POS",
"super-card.init-time": "200325174954",
"super-card.merchant-lat": "18.975",
"super-card.merchant-lon": "72.825833",
"super-card.merchant-city": "MUMBAI",
"super-card.merchant-name": "TEST MERCHANT",
"super-card.otp-enter-mode": "manual",
"super-card.merchant-country": "IN"
},
"value": {
"currency": "INR",
"amount": 100
},
"payerInfo": {
"type": "RESOURCE",
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"resourceID": "b60fde11-64fd-47a8-a0b3-4c94edea626a",
"formFactorURI": "card://59dc47e8-65e1-49e9-ad2b-39028479c69e"
},
"payeeInfo": {
"name": "TEST MERCHANT",
"type": "EXTERNAL_BUSINESS",
"location": "MUMBAI"
},
"headers": {
"signature": "AAHQ7ygwRgIhAOGdcbAVyyPCYetnL/ZhwMvVi3mBSdwYefroycFMbg2DAiEAh0SkmtTS1gZP1wz4YVl5vzUzkh8KPj9vnzzInLM5l9I=",
"signatoryJID": "11@zetauser.zeta.in/1"
}
}
],
"attributes": {},
"headers": {}
}
},
"Error": {
"title": "Error",
"type": "object",
"properties": {
"code": {
"type": "string"
},
"details": {
"$ref": "#/components/schemas/JsonElement"
}
}
},
"PublicPaymentRequestWrapper": {
"title": "PublicPaymentRequestWrapper",
"type": "object",
"properties": {
"attributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"dueBy": {
"type": "integer",
"format": "int64"
},
"paymentRequestID": {
"type": "string"
},
"requestFrom": {
"type": "string"
},
"requestTo": {
"type": "string"
},
"towards": {
"type": "string"
},
"value": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Money"
}
}
}
},
"Receipt": {
"title": "Receipt",
"type": "object",
"properties": {
"attributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"credits": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Posting"
}
},
"debits": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Posting"
}
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"payeeInfo": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"payerInfo": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"payloadVersion": {
"$ref": "#/components/schemas/Optional"
},
"paymentFrom": {
"type": "string"
},
"paymentID": {
"type": "string"
},
"paymentRequestID": {
"type": "string"
},
"paymentTo": {
"type": "string"
},
"receiptID": {
"type": "integer",
"format": "int64"
},
"receiptType": {
"type": "string",
"enum": [
"AUTHORIZATION",
"PAYMENT",
"REVERSAL"
]
},
"reversedReceiptID": {
"type": "integer",
"format": "int64"
},
"signatoryJID": {
"$ref": "#/components/schemas/JID"
},
"signature": {
"type": "string"
},
"signed": {
"type": "boolean"
},
"time": {
"type": "integer",
"format": "int64"
},
"towards": {
"type": "string"
},
"transactionCode": {
"type": "string"
},
"transactionHash": {
"type": "string"
},
"type": {
"type": "string"
},
"value": {
"$ref": "#/components/schemas/Money"
},
"zetaSignature": {
"$ref": "#/components/schemas/ZetaSignature"
}
}
},
"Optional": {
"title": "Optional«int»",
"type": "object",
"properties": {
"present": {
"type": "boolean"
}
}
},
"ZetaSignature": {
"title": "ZetaSignature",
"type": "object",
"properties": {
"algoID": {
"type": "integer",
"format": "int32"
},
"publicKeyID": {
"type": "string"
},
"signature": {
"pattern": "^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$",
"type": "string",
"format": "byte"
},
"signatureAlgorithm": {
"$ref": "#/components/schemas/SignatureAlgorithm"
}
}
},
"SignatureAlgorithm": {
"title": "SignatureAlgorithm",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int32"
}
}
},
"PaymentProdIDResponse": {
"type": "object",
"properties": {
"": {
"$ref": "#/components/schemas/PaymentProduct"
}
},
"example": {
"ifi": 140827,
"id": "5291112c-4b42-4e92-a7db-c3fcf0f96b89",
"code": "PPFAMFARTEST_sbfmt",
"name": "FAMPAY PAYMENT PRODUCT test sbfmt",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "7f2fbeb5-04f9-4b23-9565-46434c7a3969",
"tags": [
"tag://vbo/fam001"
],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Mar 19, 2020 4:15:01 PM",
"modifiedAt": "Mar 19, 2020 4:15:01 PM",
"headers": {}
}
},
"ListPaymentProductRequest": {
"type": "object",
"properties": {
"resourceProduct": {
"type": "string"
}
},
"example": {
"resourceProduct": "4f02c4f4-bdac-4df8-b609-5cfb8bcc1128"
}
},
"ListPaymentProductResponse": {
"type": "object",
"properties": {
"": {
"type": "array",
"items": {
"$ref": "#/components/schemas/PaymentProduct"
}
}
},
"example": [
{
"ifi": 162612,
"id": "809bd729-56e7-4139-871f-852b685be6df",
"code": "PPFAMFARTEST_6vh26",
"name": "FAMPAY PAYMENT PRODUCT test 6vh26",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "4f02c4f4-bdac-4df8-b609-5cfb8bcc1128",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jun 4, 2020 7:41:59 AM",
"modifiedAt": "Jun 4, 2020 7:41:59 AM",
"headers": {}
},
{
"ifi": 162612,
"id": "4a65b152-54d1-4184-ba22-c9788c5de7d2",
"code": "PPFAMFARTEST_mhhrbb",
"name": "FAMPAY PAYMENT PRODUCT test mhhrbb",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "67c21f4a-29bb-47f4-98b6-b4fd41936a6e",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jun 4, 2020 12:44:56 PM",
"modifiedAt": "Jun 4, 2020 12:44:56 PM",
"headers": {}
},
{
"ifi": 162612,
"id": "94c56738-535b-4dd3-abc6-025576ed8e8a",
"code": "PPFAMFARTEST_qlnlbb",
"name": "FAMPAY PAYMENT PRODUCT test qlnlbb",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "64b65d8c-c07f-48a3-988d-3e256f600cf8",
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jun 5, 2020 8:57:37 AM",
"modifiedAt": "Jun 5, 2020 8:57:37 AM",
"headers": {}
},
{
"ifi": 162612,
"id": "6fe04002-86f1-4da8-9a05-7bb000781b7d",
"code": "PPFAMFARTEST_ksmga6",
"name": "FAMPAY PAYMENT PRODUCT test ksmga6",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "d51fff4d-308a-4fe1-a12c-e5764a39e3b4",
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jun 5, 2020 2:41:10 PM",
"modifiedAt": "Jun 5, 2020 2:41:10 PM",
"headers": {}
},
{
"ifi": 162612,
"id": "8673d2d9-e278-4518-b6be-9ea2ead8565d",
"code": "PPFAMFARTEST_wzcjp",
"name": "FAMPAY PAYMENT PRODUCT test wzcjp",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "ccf6d50a-bc74-4464-b792-230188cdb3c5",
"tags": [
"tag://vbo/4fa18593-d2d9-4bf3-bea7-7f6deb9f2ca4"
],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jun 5, 2020 2:47:41 PM",
"modifiedAt": "Jun 5, 2020 2:47:41 PM",
"headers": {}
},
{
"ifi": 162612,
"id": "e4a82d28-3512-4559-b7be-10d29ee93042",
"code": "PPFAMFARTEST_yk59jc",
"name": "FAMPAY PAYMENT PRODUCT test yk59jc",
"description": "Payment Product for Fampay Test",
"channels": [],
"resourceProduct": "b90457bc-bf62-4f47-a73d-37f5ee78be7b",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jun 4, 2020 7:43:13 AM",
"modifiedAt": "Jun 4, 2020 7:43:13 AM",
"headers": {}
},
{
"ifi": 162612,
"id": "4b2a6706-a3f0-4e19-8020-6169b01dd9ae",
"code": "PP862",
"name": "Payment Product : 862",
"description": "Payment Product for 162612",
"channels": [],
"resourceProduct": "59030e5b-f325-432d-93a0-eed62ab4868c",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jul 21, 2020 12:51:21 PM",
"modifiedAt": "Jul 21, 2020 12:51:21 PM",
"headers": {}
},
{
"ifi": 162612,
"id": "5ea4fd36-5926-4054-b001-28759f8c0948",
"code": "PP836",
"name": "Payment Product : 836",
"description": "Payment Product for 162612",
"channels": [],
"resourceProduct": "59030e5b-f325-432d-93a0-eed62ab4868c",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jul 21, 2020 12:57:24 PM",
"modifiedAt": "Jul 21, 2020 12:57:24 PM",
"headers": {}
},
{
"ifi": 162612,
"id": "ff761b8a-0555-432c-add5-2726ca3a0241",
"code": "PP199",
"name": "Payment Product : 199",
"description": "Payment Product for 162612",
"channels": [],
"resourceProduct": "59030e5b-f325-432d-93a0-eed62ab4868c",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jul 21, 2020 1:01:04 PM",
"modifiedAt": "Jul 21, 2020 1:01:04 PM",
"headers": {}
},
{
"ifi": 162612,
"id": "e6d311bf-c69c-481e-b4ab-09998db378f9",
"code": "PP128",
"name": "Payment Product : 128",
"description": "Payment Product for 162612",
"channels": [],
"resourceProduct": "59030e5b-f325-432d-93a0-eed62ab4868c",
"tags": [],
"attributes": {},
"status": "ACTIVE",
"createdAt": "Jul 21, 2020 1:01:32 PM",
"modifiedAt": "Jul 21, 2020 1:01:32 PM",
"headers": {}
}
]
},
"PaymentProduct": {
"type": "object",
"properties": {
"ifi": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "string"
},
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"channels": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Channel"
}
},
"resourceProduct": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"attributes": {
"type": "object",
"properties": {}
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
}
}
},
"Channel": {
"title": "Channel",
"type": "object",
"properties": {
"createdAt": {
"type": "string",
"format": "date-time"
},
"description": {
"type": "string"
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"id": {
"type": "string"
},
"ifi": {
"type": "integer",
"format": "int64"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"name": {
"type": "string"
},
"paymentCodes": {
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
}
}
},
"FundTransfersRequest": {
"type": "object",
"properties": {
"requestID": {
"type": "string",
"description": "ID of the fund transfer request. Must be unique for each transfer."
},
"amount": {
"$ref": "#/components/schemas/Amount"
},
"transferCode": {
"type": "string",
"description": "Code specifying the fund transfer mode."
},
"debitAccountID": {
"type": "string",
"description": "ID of the Account from where the funds are debited."
},
"creditAccountID": {
"type": "string",
"description": "ID of the Account to which the funds are credited."
},
"transferTime": {
"type": "number",
"description": "Timestamp of fund transfer. Must be in epoch format.",
"format": "double"
},
"remarks": {
"type": "string",
"description": "Note or description regarding the fund transfer."
},
"attributes": {
"type": "object",
"description": "Additional properties specified for the fund transfer.",
"additionalProperties": {
"type": "string"
}
}
},
"example": {
"requestID": "8439eknhvutcvh44425ut",
"amount": {
"currency": "INR",
"amount": 21
},
"transferCode": "ATLAS_P2M_AUTH",
"debitAccountID": "c3b61955-f392-4f7a-905b-d561a462decc",
"creditAccountID": "422782d2-adcd-49a6-bde1-eb0461a582ba",
"transferTime": 1574741608000,
"remarks": "Fund transfer test",
"attributes": {}
}
},
"FundTransfersResponse": {
"type": "object",
"properties": {
"requestID": {
"type": "string",
"description": "ID of the fund transfer request."
},
"transferID": {
"type": "string",
"description": "Unique ID generated for the fund transfer."
},
"status": {
"type": "string",
"description": "Status of fund transfer. Example: SUCCESS for a successful transfer."
}
},
"example": {
"requestID": "8439eknhvutcvh44428ut",
"transferID": "20200806154945431_562_8439eknhvutcvh44428ut",
"status": "SUCCESS"
}
},
"FundTransfer400Error": {
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Error code."
},
"message": {
"type": "string",
"description": "Error description."
},
"details": {
"type": "object",
"properties": {
"errorCode": {
"type": "string",
"description": "Error code."
}
}
}
},
"example": {
"code": "REQUEST_MISMATCH",
"message": "The request has an old requestID, but different content",
"details": {
"errorCode": "REQUEST_MISMATCH"
}
}
},
"FormFactorIDResponse": {
"type": "object",
"properties": {
"": {
"$ref": "#/components/schemas/FormFactor"
}
},
"example": {
"id": "a390fca1-1a87-4db3-81a0-1afe57560152",
"ifi": 140827,
"formFactorProductID": "66abce21",
"formFactorID": "57cdddc5-5793-4754-afa1-79fe00be0913",
"targetURI": "account://054e2a66-d668-4164-a512-06588a0458e9",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Apr 11, 2020 2:16:36 PM",
"modifiedAt": "Jul 29, 2020 10:44:23 AM",
"headers": {}
}
},
"FormFactor": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"ifi": {
"type": "integer",
"format": "int64"
},
"formFactorProductID": {
"type": "string"
},
"formFactorID": {
"type": "string"
},
"targetURI": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"attributes": {
"type": "object",
"properties": {}
},
"policies": {
"$ref": "#/components/schemas/Policies"
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"FormFactorProductResponse": {
"type": "object",
"properties": {
"": {
"$ref": "#/components/schemas/FormFactorProduct"
}
},
"example": {
"ifi": 140827,
"id": "0397e382-c9a7-4738-b366-ea5b4d635dc4",
"code": "CMSFFFARTESTsbfmt",
"name": "IDFC Form Factor Test sbfmt",
"description": "Form Factor Test for IDFC",
"type": "card",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "CMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/0f01e45b-f2d3-4592-9b01-c259988b8582"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:53 PM",
"modifiedAt": "Mar 19, 2020 4:14:53 PM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
}
},
"FormFactorProduct": {
"type": "object",
"properties": {
"ifi": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "string"
},
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"type": {
"type": "string"
},
"policies": {
"$ref": "#/components/schemas/Policies"
},
"provider": {
"type": "string"
},
"skuID": {
"type": "string"
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"attributes": {
"type": "object",
"properties": {}
},
"issuanceStatus": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"paymentStatus": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"JID": {
"title": "JID",
"type": "object",
"properties": {
"appDomain": {
"type": "string"
},
"bareJID": {
"$ref": "#/components/schemas/JID"
},
"defaultServiceNode": {
"type": "boolean"
},
"jidOfAGroup": {
"type": "boolean"
},
"nodeId": {
"type": "string"
},
"primaryServiceName": {
"type": "string"
},
"proxyServiceJID": {
"type": "boolean"
},
"resource": {
"type": "string"
},
"serviceInstanceJID": {
"type": "boolean"
},
"serviceName": {
"type": "string"
},
"serviceViewJID": {
"type": "boolean"
},
"serviceViewName": {
"type": "string"
}
}
},
"JsonArray": {
"title": "JsonArray",
"type": "object",
"properties": {
"asBigDecimal": {
"type": "number"
},
"asBigInteger": {
"type": "integer"
},
"asBoolean": {
"type": "boolean"
},
"asByte": {
"maximum": 127,
"minimum": -128,
"type": "integer",
"format": "int32"
},
"asCharacter": {
"type": "string"
},
"asDouble": {
"type": "number",
"format": "double"
},
"asFloat": {
"type": "number",
"format": "float"
},
"asInt": {
"type": "integer",
"format": "int32"
},
"asJsonArray": {
"$ref": "#/components/schemas/JsonArray"
},
"asJsonNull": {
"$ref": "#/components/schemas/JsonNull"
},
"asJsonObject": {
"$ref": "#/components/schemas/JsonObject"
},
"asJsonPrimitive": {
"$ref": "#/components/schemas/JsonPrimitive"
},
"asLong": {
"type": "integer",
"format": "int64"
},
"asNumber": {
"$ref": "#/components/schemas/Number"
},
"asShort": {
"type": "integer",
"format": "int32"
},
"asString": {
"type": "string"
},
"jsonArray": {
"type": "boolean"
},
"jsonNull": {
"type": "boolean"
},
"jsonObject": {
"type": "boolean"
},
"jsonPrimitive": {
"type": "boolean"
}
}
},
"JsonElement": {
"title": "JsonElement",
"type": "object",
"properties": {
"asBigDecimal": {
"type": "number"
},
"asBigInteger": {
"type": "integer"
},
"asBoolean": {
"type": "boolean"
},
"asByte": {
"maximum": 127,
"minimum": -128,
"type": "integer",
"format": "int32"
},
"asCharacter": {
"type": "string"
},
"asDouble": {
"type": "number",
"format": "double"
},
"asFloat": {
"type": "number",
"format": "float"
},
"asInt": {
"type": "integer",
"format": "int32"
},
"asJsonArray": {
"$ref": "#/components/schemas/JsonArray"
},
"asJsonNull": {
"$ref": "#/components/schemas/JsonNull"
},
"asJsonObject": {
"$ref": "#/components/schemas/JsonObject"
},
"asJsonPrimitive": {
"$ref": "#/components/schemas/JsonPrimitive"
},
"asLong": {
"type": "integer",
"format": "int64"
},
"asNumber": {
"$ref": "#/components/schemas/Number"
},
"asShort": {
"type": "integer",
"format": "int32"
},
"asString": {
"type": "string"
},
"jsonArray": {
"type": "boolean"
},
"jsonNull": {
"type": "boolean"
},
"jsonObject": {
"type": "boolean"
},
"jsonPrimitive": {
"type": "boolean"
}
}
},
"JsonNull": {
"title": "JsonNull",
"type": "object",
"properties": {
"asBigDecimal": {
"type": "number"
},
"asBigInteger": {
"type": "integer"
},
"asBoolean": {
"type": "boolean"
},
"asByte": {
"maximum": 127,
"minimum": -128,
"type": "integer",
"format": "int32"
},
"asCharacter": {
"type": "string"
},
"asDouble": {
"type": "number",
"format": "double"
},
"asFloat": {
"type": "number",
"format": "float"
},
"asInt": {
"type": "integer",
"format": "int32"
},
"asJsonArray": {
"$ref": "#/components/schemas/JsonArray"
},
"asJsonNull": {
"$ref": "#/components/schemas/JsonNull"
},
"asJsonObject": {
"$ref": "#/components/schemas/JsonObject"
},
"asJsonPrimitive": {
"$ref": "#/components/schemas/JsonPrimitive"
},
"asLong": {
"type": "integer",
"format": "int64"
},
"asNumber": {
"$ref": "#/components/schemas/Number"
},
"asShort": {
"type": "integer",
"format": "int32"
},
"asString": {
"type": "string"
},
"jsonArray": {
"type": "boolean"
},
"jsonNull": {
"type": "boolean"
},
"jsonObject": {
"type": "boolean"
},
"jsonPrimitive": {
"type": "boolean"
}
}
},
"JsonObject": {
"title": "JsonObject",
"type": "object",
"properties": {
"asBigDecimal": {
"type": "number"
},
"asBigInteger": {
"type": "integer"
},
"asBoolean": {
"type": "boolean"
},
"asByte": {
"maximum": 127,
"minimum": -128,
"type": "integer",
"format": "int32"
},
"asCharacter": {
"type": "string"
},
"asDouble": {
"type": "number",
"format": "double"
},
"asFloat": {
"type": "number",
"format": "float"
},
"asInt": {
"type": "integer",
"format": "int32"
},
"asJsonArray": {
"$ref": "#/components/schemas/JsonArray"
},
"asJsonNull": {
"$ref": "#/components/schemas/JsonNull"
},
"asJsonObject": {
"$ref": "#/components/schemas/JsonObject"
},
"asJsonPrimitive": {
"$ref": "#/components/schemas/JsonPrimitive"
},
"asLong": {
"type": "integer",
"format": "int64"
},
"asNumber": {
"$ref": "#/components/schemas/Number"
},
"asShort": {
"type": "integer",
"format": "int32"
},
"asString": {
"type": "string"
},
"jsonArray": {
"type": "boolean"
},
"jsonNull": {
"type": "boolean"
},
"jsonObject": {
"type": "boolean"
},
"jsonPrimitive": {
"type": "boolean"
}
}
},
"JsonPrimitive": {
"title": "JsonPrimitive",
"type": "object",
"properties": {
"asBigDecimal": {
"type": "number"
},
"asBigInteger": {
"type": "integer"
},
"asBoolean": {
"type": "boolean"
},
"asByte": {
"maximum": 127,
"minimum": -128,
"type": "integer",
"format": "int32"
},
"asCharacter": {
"type": "string"
},
"asDouble": {
"type": "number",
"format": "double"
},
"asFloat": {
"type": "number",
"format": "float"
},
"asInt": {
"type": "integer",
"format": "int32"
},
"asJsonArray": {
"$ref": "#/components/schemas/JsonArray"
},
"asJsonNull": {
"$ref": "#/components/schemas/JsonNull"
},
"asJsonObject": {
"$ref": "#/components/schemas/JsonObject"
},
"asJsonPrimitive": {
"$ref": "#/components/schemas/JsonPrimitive"
},
"asLong": {
"type": "integer",
"format": "int64"
},
"asNumber": {
"$ref": "#/components/schemas/Number"
},
"asShort": {
"type": "integer",
"format": "int32"
},
"asString": {
"type": "string"
},
"boolean": {
"type": "boolean"
},
"jsonArray": {
"type": "boolean"
},
"jsonNull": {
"type": "boolean"
},
"jsonObject": {
"type": "boolean"
},
"jsonPrimitive": {
"type": "boolean"
},
"number": {
"type": "boolean"
},
"string": {
"type": "boolean"
}
}
},
"Money": {
"title": "Money",
"type": "object",
"properties": {
"amount": {
"type": "integer",
"format": "int64"
},
"currency": {
"type": "string"
}
}
},
"Number": {
"title": "Number",
"type": "object"
},
"Policies": {
"title": "Policies",
"type": "object",
"properties": {
"issuancePolicies": {
"type": "array",
"items": {
"type": "string"
}
},
"paymentPolicies": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"Posting": {
"title": "Posting",
"type": "object",
"properties": {
"attributes": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"cardProgramID": {
"type": "string"
},
"coupons": {
"type": "array",
"items": {
"$ref": "#/components/schemas/JsonObject"
}
},
"ifi": {
"type": "integer",
"format": "int64"
},
"instrumentType": {
"type": "string"
},
"newBalance": {
"$ref": "#/components/schemas/Money"
},
"postingID": {
"type": "string"
},
"productType": {
"type": "string"
},
"value": {
"$ref": "#/components/schemas/Money"
}
}
},
"ResourceIDListRequest": {
"type": "object",
"properties": {
"resourceTargetURI": {
"type": "string"
}
},
"example": {
"resourceTargetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1"
}
},
"ResourceIDListResponse": {
"type": "object",
"properties": {
"": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ResourceResponse"
}
}
},
"example": [
{
"ifi": 140827,
"id": "a8e27abb-3490-4b4b-9a5f-82de543f8b96",
"resourceProductId": "7f2fbeb5-04f9-4b23-9565-46434c7a3969",
"resourceProduct": {
"ifi": 140827,
"id": "7f2fbeb5-04f9-4b23-9565-46434c7a3969",
"code": "RPFAMFARTESTsbfmt",
"name": "FAMPAY RESOURCE PRODUCT TEST sbfmt",
"description": "Resource Product for Fampay test1",
"formFactorProducts": [
{
"ifi": 140827,
"id": "0397e382-c9a7-4738-b366-ea5b4d635dc4",
"code": "CMSFFFARTESTsbfmt",
"name": "IDFC Form Factor Test sbfmt",
"description": "Form Factor Test for IDFC",
"type": "card",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "CMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/0f01e45b-f2d3-4592-9b01-c259988b8582"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:53 PM",
"modifiedAt": "Mar 19, 2020 4:14:53 PM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
},
{
"ifi": 140827,
"id": "f02c44ed-6868-49a9-b592-92162ce2b225",
"code": "CMSFFFARTESTsbfmt1",
"name": "IDFC Form Factor Test sbfmt1",
"description": "Form Factor Test for IDFC",
"type": "phoneNumber",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "PMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/fam001"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:57 PM",
"modifiedAt": "Mar 19, 2020 4:14:57 PM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
}
],
"tags": [
"tag://vbo/fam001"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:59 PM",
"modifiedAt": "Mar 19, 2020 4:14:59 PM",
"headers": {}
},
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"formFactors": [
{
"id": "d867f147-9f7a-412e-aebe-c31d028111eb",
"ifi": 140827,
"formFactorProductID": "0397e382-c9a7-4738-b366-ea5b4d635dc4",
"formFactorID": "f0c1bb24-d800-4024-bd34-67a61aaab588",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 19, 2020 4:15:04 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
}
],
"tags": [
"tag://vbo/fam001"
],
"vectors": [
"vector://ACCOUNTHOLDER/2844fa71-a31c-41ef-a7af-69c7491d730c",
"vector://ACCOUNT_HOLDER/2844fa71-a31c-41ef-a7af-69c7491d730c"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"attributes": {},
"status": "ACTIVE",
"createdAt": "Mar 19, 2020 4:15:03 PM",
"modifiedAt": "May 6, 2020 4:47:36 PM",
"headers": {}
}
]
},
"ResourceResponse": {
"type": "object",
"properties": {
"ifi": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "string"
},
"resourceProductId": {
"type": "string"
},
"resourceProduct": {
"$ref": "#/components/schemas/ResourceProduct"
},
"targetURI": {
"type": "string"
},
"formFactors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FormFactor"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"vectors": {
"type": "array",
"items": {
"type": "string"
}
},
"policies": {
"$ref": "#/components/schemas/Policies"
},
"attributes": {
"type": "object",
"properties": {}
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"example": {
"ifi": 140827,
"id": "98470506-1fc3-4d76-abdc-3be1300bf0ba",
"resourceProductId": "03294d01-18cd-401b-bd3c-bf513be3bd0d",
"resourceProduct": {
"ifi": 140827,
"id": "03294d01-18cd-401b-bd3c-bf513be3bd0d",
"code": "RPFAMFARTESTwybw6o",
"name": "FAMPAY RESOURCE PRODUCT TEST wybw6o",
"description": "Resource Product for Fampay test1",
"formFactorProducts": [
{
"ifi": 140827,
"id": "0900cc44-f5a6-49f3-aaab-d3a14f122837",
"code": "CMSFFFARTESTwybw6o1",
"name": "IDFC Form Factor Test wybw6o1",
"description": "Form Factor Test for IDFC",
"type": "phoneNumber",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "PMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/fam001"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 20, 2020 5:47:26 AM",
"modifiedAt": "Mar 20, 2020 5:47:26 AM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
},
{
"ifi": 140827,
"id": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"code": "CMSFFFARTESTwybw6o",
"name": "IDFC Form Factor Test wybw6o",
"description": "Form Factor Test for IDFC",
"type": "card",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "CMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/0f01e45b-f2d3-4592-9b01-c259988b8582"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 20, 2020 5:47:24 AM",
"modifiedAt": "Mar 20, 2020 5:47:24 AM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
}
],
"tags": [
"tag://vbo/fam001"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 20, 2020 5:47:28 AM",
"modifiedAt": "Mar 20, 2020 5:47:28 AM",
"headers": {}
},
"targetURI": "account://22cf4cdd-a01a-40c4-91ac-d8d88aac7ea1",
"formFactors": [
{
"id": "01489d83-82fe-4a53-9f12-7f49cf73afa4",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "eaa30f48-a296-49a8-9df5-d1f78e0cc701",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Apr 11, 2020 2:19:25 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "30cccceb-af50-41de-b5c6-f879808503e5",
"ifi": 140827,
"formFactorProductID": "0900cc44-f5a6-49f3-aaab-d3a14f122837",
"formFactorID": "+919740431612",
"targetURI": "account://71227305-whatMobile2",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 20, 2020 5:47:33 AM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "5639a9e3-313b-4253-bbb8-d481b225d61a",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "f3ba91d4-59c4-4f26-ab1f-63eaffbb09ed",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 20, 2020 1:07:18 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "7ca197e3-d5c2-440d-8399-3140b483ef3a",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "ddcce8cb-4e81-4727-937b-95c2c1e9476a",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Apr 21, 2020 7:35:40 AM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "901dbbf9-1845-40d2-abe6-4ac0ae67ea67",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "71ce8712-050a-412b-b953-09ce737584a4",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 20, 2020 5:47:35 AM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "dc3f0943-c4ad-4393-bfd9-bfb322f8457a",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "7b08f1e7-b01c-4a06-9cb2-1ba93480ddcb",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Apr 11, 2020 2:19:14 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "ded52de6-04a3-4bc9-809d-f2b09ebe5495",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "70c70535-b3b4-4805-bf08-83f857262f96",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 23, 2020 12:15:57 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "e3188aa8-b222-424a-97ef-3fa93b07b30b",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "c19ea8a3-7abb-4fa4-99fd-e9d0621853d9",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Apr 13, 2020 12:37:33 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
},
{
"id": "f76d3043-93fd-4249-a753-86f911a9241f",
"ifi": 140827,
"formFactorProductID": "688247db-f80b-4e80-88c8-467a8ce6e2d2",
"formFactorID": "bc818aa1-13cd-433c-8d8d-cfcdf0c6ccf8",
"targetURI": "account://123Provision1",
"tags": [],
"attributes": {},
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Apr 10, 2020 2:54:13 PM",
"modifiedAt": "Jul 15, 2020 3:29:38 AM",
"headers": {}
}
],
"tags": [
"tag://vbo/fam001"
],
"vectors": [
"vector://PHONE/+919987656787",
"vector://ACCOUNTHOLDER/2844fa71-a31c-41ef-a7af-69c7491d730c",
"vector://ACCOUNT_HOLDER/2844fa71-a31c-41ef-a7af-69c7491d730c"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"attributes": {},
"status": "ACTIVE",
"createdAt": "Mar 20, 2020 5:47:33 AM",
"modifiedAt": "Mar 20, 2020 5:47:33 AM",
"headers": {}
}
},
"ResourceProductIDResponse": {
"type": "object",
"properties": {
"": {
"$ref": "#/components/schemas/ResourceProduct"
}
},
"example": {
"ifi": 140827,
"id": "7f2fbeb5-04f9-4b23-9565-46434c7a3969",
"code": "RPFAMFARTESTsbfmt",
"name": "FAMPAY RESOURCE PRODUCT TEST sbfmt",
"description": "Resource Product for Fampay test1",
"formFactorProducts": [
{
"ifi": 140827,
"id": "0397e382-c9a7-4738-b366-ea5b4d635dc4",
"code": "CMSFFFARTESTsbfmt",
"name": "IDFC Form Factor Test sbfmt",
"description": "Form Factor Test for IDFC",
"type": "card",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "CMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/0f01e45b-f2d3-4592-9b01-c259988b8582"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:53 PM",
"modifiedAt": "Mar 19, 2020 4:14:53 PM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
},
{
"ifi": 140827,
"id": "f02c44ed-6868-49a9-b592-92162ce2b225",
"code": "CMSFFFARTESTsbfmt1",
"name": "IDFC Form Factor Test sbfmt1",
"description": "Form Factor Test for IDFC",
"type": "phoneNumber",
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"provider": "PMS",
"skuID": "RUPAY_IDFC_VBO_PHYSICAL",
"tags": [
"tag://vbo/fam001"
],
"attributes": {},
"issuanceStatus": "ACTIVE",
"paymentStatus": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:57 PM",
"modifiedAt": "Mar 19, 2020 4:14:57 PM",
"headers": {
"tenantID": "140827",
"object": "140827@tenant.zeta.in"
}
}
],
"tags": [
"tag://vbo/fam001"
],
"policies": {
"issuancePolicies": [],
"paymentPolicies": []
},
"status": "ACTIVE",
"createdAt": "Mar 19, 2020 4:14:59 PM",
"modifiedAt": "Mar 19, 2020 4:14:59 PM",
"headers": {}
}
},
"ResourceProduct": {
"type": "object",
"properties": {
"ifi": {
"type": "integer",
"format": "int64"
},
"id": {
"type": "string"
},
"code": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"formFactorProducts": {
"type": "array",
"items": {
"$ref": "#/components/schemas/FormFactorProduct"
}
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"policies": {
"$ref": "#/components/schemas/Policies"
},
"status": {
"type": "string",
"enum": [
"ACTIVE",
"INACTIVE",
"DELETED"
]
},
"createdAt": {
"type": "string",
"format": "date-time"
},
"modifiedAt": {
"type": "string",
"format": "date-time"
},
"attributes": {
"type": "object",
"properties": {}
},
"headers": {
"type": "object",
"additionalProperties": {
"type": "string"
}
}
}
},
"AddVector": {
"title": "Vector",
"type": "object",
"properties": {
"type": {
"type": "string"
},
"value": {
"type": "string"
}
},
"example": {
"type": "phone",
"value": "+919987656787"
}
},
"Amount": {
"title": "Amount",
"type": "object",
"properties": {
"value": {
"type": "integer",
"format": "int64"
},
"currency": {
"type": "string"
}
}
}
}
}
}