Skip to main content

Update Adyen Gateway

PUT 

https://useast.api.elasticpath.com/v2/gateways/adyen

Use this endpoint to configure Adyen.

Request

Responses

OK

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Put, "https://useast.api.elasticpath.com/v2/gateways/adyen");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"data\": {\n \"enabled\": true,\n \"merchant_account\": \"string\",\n \"username\": \"string\",\n \"password\": \"string\",\n \"test\": true\n }\n}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://useast.api.elasticpath.com
Body
{
  "data": {
    "enabled": true,
    "merchant_account": "string",
    "username": "string",
    "password": "string",
    "test": true
  }
}
ResponseClear

Click the Send API Request button above and see the response here!