Alipay+ DocsAlipay+ Docs

inquireDeclarationRequestsACQP → Alipay+

POST /aps/api/v1/customs/inquireDeclarationRequests

The inquireDeclarationRequests API is used by the Acquiring Service Provider (ACQP) to inquire about the status of declared payments. 

Structure

A message consists of a header and body. The following sections are focused on the body structure. For the header structure, see:

Note:

1. Set the data type of each parameter (except array) as String. This means that you must use double quotation marks (" ") to enclose the parameter value. Examples:

  • If the data type of a parameter is Integer and its value is 20, set it as "20".
  • If the data type of a parameter is Boolean and its value is true, set it as "true". 

2. For optional parameters that are not required in your case, you can take one of the following actions:

  • Exclude the parameters from the request body. 
  • Set the parameter values as null (without the double quotation marks). 

Do NOT leave the optional parameters empty by setting their values as ""; otherwise, an error might occur. 

Request parameters

declarationRequestIds Array<String>  REQUIRED

The unique declaration request IDs that are assigned by the merchant to identify declaration requests. Up to 10 declaration request IDs are supported at a time. 

More information about this field

  • Maximum length: 64 characters
  • Maximum size: 10 elements

Response parameters

result Result object REQUIRED

The result of the business processing, including the result status, result code, and the result message.

This parameter only indicates the result of the declaration inquiry request, but does not indicate the result of declarations. 

Show child parameters

declarationRequestsNotFound Array<String>  

The list of declaration request IDs that are not found in the customs system.

This parameter is returned by Alipay+ if result.resultCode is S and one or multiple declaration request IDs can't refer to any existing declarations. 

More information about this field

  • Maximum length: 64 characters
  • Maximum size: 10 elements

declarationRecords Array<DeclarationRecord> object 

The list of customs declaration records. Each record represents a customs declaration.

This parameter is returned by Alipay+ if result.resultCode is S

More information about this field

  • Maximum size: 10 elements
Show child parameters
API Explorer
Sample CodesRun in Sandbox

Request

URL
Request Body

Response

Response Body

More information

How to handle the result

You might receive different results from Alipay+. Follow the instructions below to handle the result.

result.resultStatus

result.resultCode

Inquiry status

Actions

S

SUCCESS

Inquiry succeeds.

N/A

F

Multiple possible values exist, such as

ACCESS_DENIED,

KEY_NOT_FOUND, etc.

Inquiry fails.

Take actions according to the result code (specified on the result.resultCode parameter). For more information, see the Result codes section below.

U

Multiple possible values exist, such as

UNKNOWN_EXCEPTION,

REQUEST_TRAFFIC_EXCEED_LIMIT, etc.

Unknown

Use the same parameters to retry the inquireDeclarationRequests request. If you keep receiving the same result indicating the unknown status, contact connect_support@service.alipay.com.

No result received

Unknown

Use the same parameters to retry the inquireDeclarationRequests request. If you keep receiving no result, contact connect_support@service.alipay.com.

Result/Error codes

CodeValueMessageFurther action
SUCCESSSSuccess

N/A

ACCESS_DENIEDFAccess is denied.

It is recommended that you contact connect_support@service.alipay.com to troubleshoot the issue. 

COUNT_OF_REQUEST_EXCEED_LIMITFFor each inquiry, only up to 10 declaration request IDs can be used.

Ensure that the number of declaration request IDs in the request does not exceed 10. 

INVALID_CLIENTFThe client is invalid.

It is recommended that you contact connect_support@service.alipay.com to troubleshoot the issue. 

INVALID_SIGNATUREFThe signature is invalid.

Check whether the public key, signed message, and signature algorithm are as expected. 

KEY_NOT_FOUNDFThe key is not found.

It is recommended that you contact connect_support@service.alipay.com to troubleshoot the issue. 

MEDIA_TYPE_NOT_ACCEPTABLEFThe server does not implement the media type that is acceptable to the client.

Use a media type that is accepted by Alipay+. 

METHOD_NOT_SUPPORTEDFThe server does not implement the requested HTTPS method.

Ensure the HTTP method is POST. 

NO_INTERFACE_DEFFAPI is not defined.

Check whether the request URL is correct. Ensure that the endpoint of the called API is correct. 

PARAM_ILLEGALFIllegal parameters. For example, non-numeric input, invalid date.

Check whether the request parameters, including the header parameters and body parameters, are correct and valid. For more information about the parameters of each API, see the Structure section of the specific API reference topic. 

PROCESS_FAILFA general business failure occurred. Do not retry.

It is recommended that you contact connect_support@service.alipay.com to troubleshoot the issue. 

REQUEST_TRAFFIC_EXCEED_LIMITUThe request traffic exceeds the limit.

Reduce the frequency of API calls. 

UNKNOWN_EXCEPTIONUAn API call failed, which is caused by unknown reasons.

Try to recall the API.