Payment
Request
Path Parameters
aid
string
必需
merchantTransID
string
必需
Payment 的 merchantTransID
Header Parameters
Content-type
string
Fixed value application/json
DateTime
string
Request time, The format is `YYYY-MM-DDThh:mm:ssZhh:00` such as` 2020-03-04T15:39:40Z08:00`.
MsgID
string
The suggested value is UUID or GUID to mark this request, such `2d21a5715c034efb7e0aa383b885fc7a`, Do not exceed 32 characters in length;
SignType
string
Algorithm for calculating signatures.`SHA256` or `SHA512`
Responses
200
GET
/g2/v0/payment/acq/{aid}/evo.offline.payment/{merchantTransID}Try it
Server
https://online-uat.everonet.com
Path Parameters
Header Parameters
Request Samples
cURL
curl -i -X GET \
'https://online-uat.everonet.com/g2/v0/payment/acq/{aid}/evo.offline.payment/{merchantTransID}' \
-H 'Content-type: application/json' \
-H 'DateTime: string' \
-H 'MsgID: string' \
-H 'SignType: string'
JavaScript
const aid = 'YOUR_aid_PARAMETER';
const merchantTransID = 'YOUR_merchantTransID_PARAMETER';
fetch(
`https://online-uat.everonet.com/g2/v0/payment/acq/${aid}/evo.offline.payment/${merchantTransID}`,
{
method: 'get',
headers: {
'Content-type': 'application/json',
'DateTime': 'string',
'MsgID': 'string',
'SignType': 'string'
}
})
.then(response => response.json())
.then(data => console.log(data));
Response Samples
200
application/json
json