updatePaymentTypes
put
/ccadmin/v1/merchant/paymentTypes
Update Payment Types. Update payment types based on request parameters.
Request
Supported Media Types
- application/json
Body Parameter
Root Schema : updatePaymentTypes_request
{
"paymentTypes":[
"visa"
]
}
- paymentTypes
-
Type:
array
paymentTypesRequired:true
Additional Properties Allowed:Array of payment types to enable.
Nested Schema : paymentTypes
Response
Supported Media Types
- application/json
200 Response
Following model is returned when operation succeeds.
Body
Root Schema : updatePaymentTypes_response
- items
-
Type:
array
itemsAdditional Properties Allowed:List of payment types.
Nested Schema : items
Nested Schema : items
Type:
object
- code
-
Type:
string
The payment gateway specific code for the payment type. - cvvLength
-
Type:
string
Valid cvv length. - iin
-
Type:
string
Issuer identification number for the payment type. - img
-
Type:
object
imgAdditional Properties Allowed:Payment type image URL. - length
-
Type:
string
Valid card number length. - name
-
Type:
string
The internal name for the payment type. - repositoryId
-
Type:
string
The repository ID of the payment type item. - startDateRequired
-
Type:
boolean
Whether the the start date of the credit card is required for this payment type. - type
-
Type:
string
Kind of payment type.For e.g.: card,check,etc. - value
-
Type:
string
The value for the payment type.
Nested Schema : img
Type:
object
Payment type image URL.
- name
-
Type:
string
Name of the image. - path
-
Type:
string
Relative path of the image. - repositoryId
-
Type:
string
The id of the media external image file. - url
-
Type:
string
The derived URL for the image.
Example application/json
{
"items":[
{
"img":{
"path":"/ccimg/visa_straight.png",
"name":"Visa",
"repositoryId":"imgVisa",
"url":"http://localhost:9080/file/ccimg/visa_straight.png"
},
"code":"001",
"name":"Visa",
"startDateRequired":false,
"length":"13|16",
"repositoryId":"visa",
"type":"card",
"value":"visa",
"cvvLength":3,
"iin":"4"
},
{
"img":{
"path":"/ccimg/mastercard.png",
"name":"Mastercard",
"repositoryId":"imgMastercard",
"url":"http://localhost:9080/file/ccimg/mastercard.png"
},
"code":"002",
"name":"Mastercard",
"startDateRequired":false,
"length":"16",
"repositoryId":"mastercard",
"type":"card",
"value":"mastercard",
"cvvLength":3,
"iin":"5[0-5]"
},
{
"img":{
"path":"/ccimg/amex.png",
"name":"American Express",
"repositoryId":"imgAmex",
"url":"http://localhost:9080/file/ccimg/amex.png"
},
"code":"003",
"name":"American Express",
"startDateRequired":false,
"length":"15",
"repositoryId":"amex",
"type":"card",
"value":"amex",
"cvvLength":4,
"iin":"3[47]"
}
]
}
Default Response
The error response
Body
Root Schema : errorModel
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - errors
-
Type:
array
errorsAdditional Properties Allowed:An optional list of errors if multiple errors were encountered - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code - type
-
Type:
string
The URI to the HTTP state code definition
Nested Schema : errors
Nested Schema : items
Type:
object
- devMessage
-
Type:
string
An optional non-localized message containing technical information for developers - errorCode
-
Type:
string
The numerical code identifying the error - message
-
Type:
string
The localized message describing the error - moreInfo
-
Type:
string
An optional non-localized message with more information - o:errorPath
-
Type:
string
An optional machine readable description of where the error occurred - status
-
Type:
string
The HTTP status code
Examples
Sample Request:
{"paymentTypes": ["visa"]}
Sample Response Payload returned by endpoint:
{"items": [ { "img": { "path": "/ccimg/visa_straight.png", "name": "Visa", "repositoryId": "imgVisa", "url": "http://localhost:9080/file/ccimg/visa_straight.png" }, "code": "001", "name": "Visa", "startDateRequired": false, "length": "13|16", "repositoryId": "visa", "type": "card", "value": "visa", "cvvLength": 3, "iin": "4" }, { "img": { "path": "/ccimg/mastercard.png", "name": "Mastercard", "repositoryId": "imgMastercard", "url": "http://localhost:9080/file/ccimg/mastercard.png" }, "code": "002", "name": "Mastercard", "startDateRequired": false, "length": "16", "repositoryId": "mastercard", "type": "card", "value": "mastercard", "cvvLength": 3, "iin": "5[0-5]" }, { "img": { "path": "/ccimg/amex.png", "name": "American Express", "repositoryId": "imgAmex", "url": "http://localhost:9080/file/ccimg/amex.png" }, "code": "003", "name": "American Express", "startDateRequired": false, "length": "15", "repositoryId": "amex", "type": "card", "value": "amex", "cvvLength": 4, "iin": "3[47]" } ]}