Category links

API Links

InventoryTransfer

Action: POST

Endpoint: /api/InventoryTransfer

API Version 1.3

Request fields details
Fields Description

APIVersion

string

Mandatory

Version of the API to be invoked Example: 1.3

Allowable Values:

10

IPAddress

string

Mandatory

IP Address of sender Example: 10.206.0.204

Allowable Values:

15

Source

string

Mandatory

Source from where API Call is initiated. CoreCard have multiple value of source for internal system (CoreMoney, SelfService, IVR, MobileSelfService) For external system expected source will be WEB.

Allowable Values:

50

CallerID

string

Optional

Caller Id of source from where API is initiated. It is End User phone number. Example: 7204454214 Condition - applicable in Case of IVR

Allowable Values:

20

CalledID

string

Optional

Called Id of destination for which API is initiated. It is Corecard IVR number. Example: 7314145404 Condition - applicable in Case of IVR

Allowable Values:

20

SessionID

string

Optional

Reserved for future use

Allowable Values:

50

ANI

string

Optional

Reserved for future use

Allowable Values:

0

DNS

string

Optional

Reserved for future use

Allowable Values:

0

Language

string

Optional

Flag to retrieve error message in specific language Example: 'en' for English

Allowable Values:

2

RequestDate

string

Optional

Request Date Time of API Format: MM-DD-YYYYTHH:MM:SS Example:- 11-12-2021T13:05:10

Allowable Values:

19

OrderID

string

Conditional

Order number for an inventory. Valid values : 0-9 Example : 3478 Condition : At least one of Account Number/Card Number/Proxy Number/Order ID is required. Example:3745

Allowable Values:

19

FromBranchCode

string

Mandatory

Branch code of the branch from where the card will be sent to another branch Valid Values: A-Z, a-z, 0-9 , Example:AC1006

ToBranchCode

string

Mandatory

Branch code of the branch where the card will be received. Valid Values: A-Z, a-z, 0-9 , Example:DC1006

ShippingMode

string

Mandatory

Shipping Method to send cards,valid values 0=Standard 1=Priority 2=Overnight 3=2nd business day

Allowable Values:

50

AutoReceipt

string

Mandatory

Transfer Receipt should be generated automatically or not. Valid Values: 0 = yes 1 = NO

Allowable Values:

1

CardTransferRecords

array

Optional

ProxyNumber

string

Conditional

Proxy Number of the cardholder Valid values:0-9 Example:1005 Condition :At least one of Account Number/Card Number/Proxy Number/Order ID is required.

Allowable Values:

19

AccountNumber

string

Conditional

Account Number of the cardholder. Valid values: 0-9 Example: 2000000000000396893 Condition : At least one of Account Number/Card Number/Proxy Number/Order ID is required.

Allowable Values:

19

Sample request body
{
  "APIVersion": "1.3",
  "IPAddress": "10.206.2.197",
  "Source": "WEB",
  "CallerID": "",
  "CalledID": "",
  "SessionID": "",
  "ANI": "",
  "DNS": "",
  "Language": "en",
  "RequestDate": "",
  "OrderID": "194496",
  "FromBranchCode": "CC10000",
  "ToBranchCode": "BankA2000",
  "ShippingMode": "0",
  "AutoReceipt": "1",
  "CardTransferRecords": [
    {
      "ProxyNumber": "194475",
      "AccountNumber": "60000000032489"
    }
  ]
}
Response fields details
Fields Description

Message

string

Returns Error Message in case of Error.

Status

boolean

Returns result of API processing. If any error is found then value will be 'false' else 'true'.

ErrorCode

string

Returns Error Code in case of Error.

ResponseData

This is group of below data elements.

OrderID

string

Order number for an inventory. Valid values : 0-9 Example : 3478

Sample response body

{
  "Message": "Successful.",
  "Status": true,
  "ErrorCode": "00000",
  "ResponseData": {
    "OrderID": "194470"
  }
}