TAG LINE
TAG LINE
SMALL TITLE

Adyen Merchant Account

(API Version v10)


What can you do with AdyenMerchantAccount?


Properties

Property Details
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.


End Points

GETAdyen/MerchantAccount/PaymentGateway/{paymentGatewayId}
Retrieve all of the AdyenMerchantAccount objects.
Retrieve all of the AdyenMerchantAccount objects.
GET Adyen/MerchantAccount/PaymentGateway/{paymentGatewayId}
View Sample Response
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"
        }
    ]
}
POSTAdyen/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
}
View Sample Response
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"
            }
        ]
    }
}