- Debit Card 1.0.0
- APIs
- DebitCard_CardCreation 1.0.0
- Operations
- POST /cardCreation
- Definitions
- Request
- Response
- Error Response
0
No votes yet
This service is used for creating/registering new card for the given customer id and account number.
production
development
https://devgateway.federalbank.co.in/fedbnkdev/dev
Paths
/cardCreation
post /cardCreation
appSecret
X-IBM-Client-Secret
(apiKey located in header)
appId
X-IBM-Client-Id
(apiKey located in header)
req
Required in body
object
Content-Type
Optional in header
string
application/json
Accept
Optional in header
string
application/json
400
Error
500
Internal Error
Example Request
Example Response
POST https://devgateway.federalbank.co.in/fedbnkdev/dev/debitCard/v1.0.0/cardCreation
Try this operation
No response. This is a mixed content call. It is not possible to test HTTP APIs from an HTTPS secured Portal site and vice versa.
No response. This is a cross-origin call. Make sure the server accepts requests from this portal. Or if using self-signed SSL certificates then paste the URL above into your browser to accept the certificate before trying again (On Internet Explorer it must be the same browser tab.).
Definitions
{
"type": "object",
"properties": {
"RespUrl": {
"type": "string",
"description": "Final response will be posted to this URL"
},
"SenderCode": {
"type": "string",
"description": "Hardcoded, will be shared to client at the time of on boarding"
},
"ServiceAccessId": {
"type": "string",
"description": "Hardcoded, will be shared to client at the time of on boarding"
},
"ServiceAccessCode": {
"type": "string",
"description": "Hardcoded, will be shared to client at the time of on boarding"
},
"RequestId": {
"type": "string",
"description": "Only alphanumeric values and '_' is allowed."
},
"MobileNumber": {
"type": "string",
"description": "Only Numeric values (Mobile number with 91 is allowed (91XXXXXXXXXX))"
},
"EmbossName": {
"type": "string",
"description": "Name to be printed on the card. . If no tag then emboss name will be defaulted from customer name."
},
"CardType": {
"type": "string",
"description": "P - Physical Card V – Virtual Card"
},
"CardSubType": {
"type": "string",
"description": "Only alphanumeric values are allowed."
},
"CustomerId": {
"type": "string",
"description": "Only alphanumeric values are allowed"
},
"AccountNumber": {
"type": "string",
"description": "Only alphanumeric values are allowed"
}
},
"example": "{\"RespUrl\":\"https://vnotificationgw.uat.pointz.in/openbanking/card/federal\",\"SenderCode\":\"Zerodha\",\"ServiceAccessId\":\"Zerodha\",\"ServiceAccessCode\":\"Zerodha\",\"RequestId\":\"CA097839\",\"MobileNumber\":\"919562034225\",\"EmbossName\":\"ASHNA E\",\"CardType\":\"P\",\"CardSubType\":\"EPIFI\",\"CustomerId\":\"136254205\",\"AccountNumber\":\"55550106087248\"}"
}
{
"type": "object",
"properties": {
"SenderCode": {
"type": "string",
"description": "Hardcoded, will be shared to client at the time of on boarding"
},
"RequestId": {
"type": "string",
"description": "Only alphanumeric values and '_' is allowed."
},
"ResponseCode": {
"type": "string"
},
"ResponseReason": {
"type": "string"
},
"ResponseAction": {
"type": "string"
}
},
"example": "{\"SenderCode\":\"Zerodha\",\"RequestId\":\"CA012189\",\"ResponseCode\":\"CC0000\",\"ResponseReason\":\"RECEIVED SUCCESSFULLY\",\"ResponseAction\":\"SUSPECT\"}"
}
{
"type": "object",
"properties": {
"SenderCode": {
"type": "string",
"description": "Hardcoded, will be shared to client at the time of on boarding"
},
"RequestId": {
"type": "string",
"description": "Only alphanumeric values and '_' is allowed."
},
"CardType": {
"type": "string",
"description": "P - Physical Card V – Virtual Card"
},
"ResponseCode": {
"type": "string"
},
"ResponseReason": {
"type": "string"
},
"ResponseAction": {
"type": "string"
},
"ErrorList": {
"type": "array",
"items": {
"properties": {
"ErrorCode": {
"type": "string"
},
"Reason": {
"type": "string"
}
},
"type": "object"
}
}
},
"example": "{\"SenderCode\":\"Zerodha\",\"RequestId\":\"CA8710123139\",\"CardType\":\"P\",\"ResponseCode\":\"OBE0071\",\"ResponseReason\":\"System Failure\",\"ResponseAction\":\"FAILURE\",\"ErrorList\":[{\"ErrorCode\":\"F\",\"Reason\":\"The customer is already having 2 cards in account number 55550100000197.\"}]}"
}
- Log in or register to post comments