Create a transfer request

POST: /amsin/api/v1/business/fund/createTransfer

Signature required

The Partner can use this API to move money from one Wallet Account (WA) to another WA.

The transfer process is asynchronous. WorldFirst responds to the Partner that the transfer request is being processed, rather than the final result of the transfer. You can call the inquiryTransfer API to query the transfer result. WorldFirst notifies the transfer result with the notifyTransfer interface.

Structure

A message consists of a header and body.

Request header parameters

Field

Required

Sample

Description

Client-Id

Yes

Client-Id: *****

For detailed field descriptions, see API Overview

Signature

Yes

Signature: algorithm=RSA256, keyVersion=2, signature=*****

Content-Type

Yes

Content-Type: application/json; charset=UTF-8

Request-Time

Yes

Request-Time: 2019-04-04T12:08:56+08:00

Connected-CustomerId

No (Conditional)

Connected-CustomerId: ******

Pay special attention to this filed

Required when a partner manages a customer's account. 

Request body parameters

Field

Data type

Required

Description

transferRequestId

String

Yes

The unique ID assigned by the Partner to identify a transfer request.

Note:

  • This field is an API idempotency field. For details about API idempotency, see the Idempotency chapter.

More information:

  • Maximum length: 64 characters

transferFromDetail

TransferFromDetail object

Yes

Transfer details submitted by the payer.

transferToDetail

TransferToDetail object

Yes

Transfer details for the beneficiary.

transferOrderAddition

TransferOrderAddition object

No

Additional information about the transfer, such as information about the payer and the beneficiary.

Response body parameters

Field

Data type

Required

Description

result

Result object

Yes

Indicates whether this API is called successfully.

Note: The following fields are returned as needed only when result.resultStatus =.

transferRequestId

String

Yes

The unique ID assigned by the Partner to identify a transfer request.

Note:

  • This field is an API idempotency field. For details about API idempotency, see the Idempotency chapter.

More information:

  • Maximum length: 64 characters

transferId

String

Yes

The unique ID assigned by WorldFirst to identify a transfer.

  • Maximum length: 64 characters

transferFinishTime

DateTime object

No

Indicates the finishing time of a transfer.

Note:

  • WorldFirst only returns this field when the Partner makes duplicated transfer requests, indicating the actual finishing time of the transfer.
  • The value of this field follows the ISO 8601 standard format. For example, 2019-01-01T01:01:01+08:00, or 2019-01-01T01:01:01Z(UTC timezone).

transferFromDetail

TransferFromDetail object

Yes

Transfer details submitted by the payer, such as the transfer amount and the payment method.

transferToDetail

TransferToDetail object

Yes

Transfer details for the beneficiary, such as the transfer amount collected by the beneficiary.

transferOrderAddition

TransferOrderAddition object

No

Additional information about the transfer, such as information about the payer and the beneficiary.

Result processing logic

After making an API request, WorldFirst responds to the Partner with the result of the API call. The possible responses for result.resultStatus are:

Result status

Description

S

This indicates the API call succeeded.

  • This result status indicates that WorldFirst accepts the transfer request and is processing the transfer.
  • For the result of the transfer, wait for the notification from the notifyTransfer interface. If no result from notifyTransfer is received within 20 minutes, call inquiryTransfer to inquire about the transfer result. 

F

This indicates the API call failed. For more information on why the call failed, see result.resultCode.

U

This indicates the API call result is unknown.

  • Best practice: Query the result of the transfer with the inquiryTransfer interface.

Result codes

result.resultCode

System-related result codes

resultCode

resultStatus

resultMessage

Further action

PROCESSING

S

The transfer is in process.

The transfer is created successfully and being processed. Call the inquiryTransfer API for the transfer result.

PARAM_ILLEGAL

F

Illegal parameters exist. For example, a non-numeric input, or an invalid date.

Check and verify whether the request fields, including the header fields and body fields, are correct and valid.

For details on the fields of each API, see the specific API Structure section.

PROCESS_FAIL

F

A general business failure occurred. Do not retry.

Human intervention is usually needed. It is recommended that you contact our Technical Support Team to resolve the issue.

UNKNOWN_EXCEPTION

U

API failed due to unknown reason.

The service might be down, retry later. If the issue persists, contact our Technical Support Team.

REQUEST_TRAFFIC_EXCEED_LIMIT

U

The request traffic exceeds the limit.

Call the interface again to resolve the issue. If the issue persists, contact our Technical Support Team.

INVALID_API

F

The called API is invalid or not active.

Check whether the correct API is being called.

INVALID_CLIENT

F

The client is invalid.

The Client ID does not exist or is invalid.

INVALID_SIGNATURE

F

The signature is invalid.

Make sure the request is properly signed with a valid signature.

METHOD_NOT_SUPPORTED

F

The server does not implement the requested HTTP method.

Ensure the HTTP method is POST.

Business-related result codes

resultCode

resultStatus

resultMessage

Further action

UN_SUPPORT_BUSINESS

F

Unsupported business.

Invalid parameters are used. Retry with the correct information.

ORDER_NOT_EXIST

F

The order does not exist.

Retry with another transfer order.

USER_NO_PERMISSION

F

User does not have permission.

Retry with another user information.

CURRENCY_NOT_SUPPORT

F

The currency is not supported.

Make sure the currency input is correct and try again.

USER_NOT_EXIST

F

The user does not exist.

Retry with the correct user information.

USER_ACCOUNT_ABNORMAL

F

The user account status is abnormal.

Retry with a different user. If the issue persists, contact our Technical Support Team for more details.

REPEAT_REQ_INCONSISTENT

F

Repeated requests are inconsistent.

Ensure all the fields in the requests are the same and try again.

USER_STATUS_ABNORMAL

F

The status of the user is abnormal. Retry with another card.

The status of the user is abnormal. Retry with another transfer order.

BALANCE_NOT_ENOUGH

F

Balance is not enough.

Make sure the balance is sufficient and retry.

AMOUNT_EXCEED_LIMIT

F

The amount exceeds the limit.

Make sure the amount submitted is correct and retry.

CONTRACT_CHECK_FAIL

F

The contract check has failed.

Ensure the Partner has already signed a contract and the input is correct.

QUOTE_EXPIRED

F

The quote is expired.

Call the createQuote API to create a new quote. Retry creating a new request with the new quote.

Samples

Request

copy
{
    "transferRequestId": "*****",
    "transferFromDetail": {
        "transferFromAmount": {
            "currency": "USD",
            "value": 1000
        }
    },
    "transferToDetail": {
        "transferToAmount": {
            "currency": "EUR"
        },
        "feeAmount": {
            "currency": "USD",
            "value": 10
        },
        "transferToMethod": {
            "customerId": "*****",
            "paymentMethodType": "BALANCE"
        },
        "transferNotifyUrl": "www.notifyurl.com",
        "transferQuote": {
            "quoteId": "*****"
        },
        "transferMemo": "memo shows in worldfirst statement",
        "purposeCode": "GDS"
    },
    "transferOrderAddition": {
        "referenceOrderId": "*****"
    }
}

Response

copy
{
    "result": {
        "resultStatus": "S",
        "resultCode": "PROCESSING",
        "resultMessage": "Processing"
    },
    "transferRequestId": "*****",
    "transferId": "*****",
    "transferFromDetail": {
        "transferFromAmount": {
            "currency": "USD",
            "value": 1000
        }
    },
    "transferToDetail": {
        "purposeCode": "GDS",
        "transferToAmount": {
            "currency": "EUR",
            "value": 938
        },
        "feeAmount": {
            "currency": "USD",
            "value": 10
        },
        "transferToMethod": {
            "customerId": "*****",
            "paymentMethodType": "BALANCE"
        },
        "transferQuote": {
            "quoteId": "*****"
        },
        "transferMemo": "memo shows in worldfirst statement"
    },
    "transferOrderAddition": {
        "referenceOrderId": "*****"
    }
}