POST v1/payment/installment-count
Request Information
URI Parameters
None.
Body Parameters
InstallmentCountRequestModelName | Description | Type | Additional information |
---|---|---|---|
CardNumber | string |
Required |
|
PackageNo | integer |
None. |
|
ShipmentUID | string |
None. |
|
OfferID | integer |
None. |
Request Format
application/json, text/json
Sample:
{ "CardNumber": "sample string 1", "PackageNo": 2, "ShipmentUID": "sample string 3", "OfferID": 4 }
Response Information
Resource Description
BaseMetaResultModelOfListOfInstallmentCountResponseModelName | Description | Type | Additional information |
---|---|---|---|
response | Collection of InstallmentCountResponseModel |
None. |
|
meta |
Basic meta information for the operation result |
MetaModel |
None. |
Response Format
application/json, text/json
Sample:
{ "response": [ { "InstallmentCount": 1, "LateCharge": 2.0, "SanalPosID": 3, "TotalPrice": 4.0, "InstallmentAmount": 5.0 }, { "InstallmentCount": 1, "LateCharge": 2.0, "SanalPosID": 3, "TotalPrice": 4.0, "InstallmentAmount": 5.0 } ], "meta": { "status_code": 1, "status_message": "sample string 2" } }