API endpoints for managing acquirer profiles
Get Acquirer Profiles
GET /api/v2/acquirer
Accept: application/json
Authorization: Bearer {jwt}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
profileName | query | string | false | Like query |
pageNumber | query | number | false | Default 1 |
pageSize | query | number | false | Default 10, query all use -1 |
Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK (opens in a new tab) | Example response | Wrapper: Response List<T> Data: AcquirerProfile |
Create Acquirer Profile
POST /api/v2/acquirer
Authorization: Bearer {jwt}
Method: PaymentMethod
Parameters
{
"profileName": "string",
"currency": "string",
"connMessageFormat": "string",
"connUrl": "string",
"notifyUrl": "string",
"connTimeout": 0,
"connRequestTimeout": 0,
"emvList": {
"01": [0],
"02": [0],
"03": [0],
"04": [0],
"05": [0],
"06": [0]
},
"methodList": {
"01": ["string"],
"02": ["string"],
"03": ["string"],
"04": ["string"],
"05": ["string"],
"06": ["string"]
}
}
Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK (opens in a new tab) | Example response | Wrapper: Response<T> |
Response Schema
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
id | number | false | none | none |
Delete Acquirer Profile
DELETE /api/v2/acquirer/{profileId}`
Authorization: Bearer {jwt}
Parameters
Name | In | Type | Required | Description |
---|---|---|---|---|
profileId | path | string | true | none |
Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK (opens in a new tab) | Example response | Wrapper: Response<T> |
Response Schema
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
id | number | false | none | none |
Update Acquirer Profile
PUT /api/v2/acquirer/{profileId}
Authorization: Bearer {jwt}
Method: PaymentMethod
Parameters
Response
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK (opens in a new tab) | Example response | Wrapper: Response<T> |
Response Schema
Name | Type | Required | Restrictions | Description |
---|---|---|---|---|
id | number | false | none | none |