Skip to main content

AuthController_auth

POST 

https://api.sandbox.capay.com.au/authenticate

AuthController_auth

Request

Responses

var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "https://api.sandbox.capay.com.au/authenticate");
request.Headers.Add("Accept", "application/json");
var content = new StringContent("{\n \"apiUser\": \"string\",\n \"apiKey\": \"string\"\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://api.sandbox.capay.com.au
Body required
{
  "apiUser": "string",
  "apiKey": "string"
}
ResponseClear

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