GET api/account/task/transfer-task?taskID={taskID}
Retrieve transfer task information
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taskID |
Can be either the task Guid or the external reference associated with the task |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
List of TransferTaskEnquiryResponse
Collection of TransferTaskEnquiryResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| TransferTaskEnquiryID |
Search string from the user. Can be either the task Guid or the external reference used by third party. |
string |
None. |
| Status |
Task status |
enTaskStatus |
None. |
| RejectedReason |
Error message when failed to process the task |
string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"TransferTaskEnquiryID": "5388a9a8-13c2-4a17-8a14-98b75c479289",
"Status": 3,
"RejectedReason": ""
}
]
application/xml, text/xml
Sample:
<ArrayOfTransferTaskEnquiryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TPP.B2B.Webservices2.Contract.Tasks">
<TransferTaskEnquiryResponse>
<RejectedReason></RejectedReason>
<Status>Completed</Status>
<TransferTaskEnquiryID>5388a9a8-13c2-4a17-8a14-98b75c479289</TransferTaskEnquiryID>
</TransferTaskEnquiryResponse>
</ArrayOfTransferTaskEnquiryResponse>
Error Response Information
Resource Description
List of TransferTaskEnquiryResponse
stringError Response Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>