TAG LINE
TAG LINE
SMALL TITLE
identity READ-ONLY | "identity": 25 Type: Number This is the unique numeric identifier for the AdyenMerchantAccount |
name | "name": "Hello World" Type: String |
isActive | "isActive": true Type: Boolean |
paymentGatewayId | "paymentGatewayId": 27 Type: Number Unique identifier for the associated PaymentGateway object. |
paymentGatewayName | "paymentGatewayName": "Sample Name" Type: String The name of the object associated with the paymentGatewayId property. |
| GET | Adyen/MerchantAccount/PaymentGateway/{paymentGatewayId} |
| Retrieve all of the AdyenMerchantAccount objects. | |
Retrieve all of the AdyenMerchantAccount objects. GET Adyen/MerchantAccount/PaymentGateway/{paymentGatewayId}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"totalCount": 1,
"items": [
{
"identity": 1,
"name": "Sample Text Data",
"isActive": true,
"paymentGatewayId": 27,
"paymentGatewayName": "Sample Text Data"
}
]
} | |
| POST | Adyen/MerchantAccount/PaymentGateway/{paymentGatewayId}/Sync |
| Create a new instance of the AdyenMerchantAccount object. | |
Create a new instance of the AdyenMerchantAccount object. POST Adyen/MerchantAccount/PaymentGateway/{paymentGatewayId}/Sync
{
"name": "Sample Text Data",
"isActive": true,
"paymentGatewayId": 27
}HTTP/1.1 200 OK
{
"trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
"type": "create",
"results": {
"totalCount": 1,
"items": [
{
"identity": 1,
"name": "Sample Text Data",
"isActive": true,
"paymentGatewayId": 4,
"paymentGatewayName": "Sample Text Data"
}
]
}
} | |