Retrieves the available authentication methods when delivering log data via HTTP POST.
Retrieve authentication methods via the following request:
HTTP Method | Request URI |
---|---|
GET |
https://api.transactcdn.com/v2/mcc/rtld/http-authentication-methods |
This endpointIdentifies a request's connection point to our REST API service. only takes advantage of common request headers.
Request body parameters are not required by this endpoint.
The response to the above request includes an HTTP status code, response headers, and a response body.
A status code indicates whether the request was successfully performed.
The response for this endpoint only includes standard HTTP response headers.
The response body for a successful request contains the following response elements:
Name | Data Type | Description |
---|---|---|
@id |
String |
Returns /v2/mcc/rtld/http-authentication-methods.
|
@type |
String |
Returns Collection. |
items |
Array |
Contains the available authentication methods for HTTP POST log delivery. |
code |
String |
items array Identifies an authentication method by its code name. Reference this code name when defining or retrieving a RTLD configuration. |
name |
String |
items array Identifies an authentication method by its name. |
total_items |
Integer |
Indicates the total number of authentication methods that were included in the response. |
The response body for an unsuccessful request will contain an error response that provides additional information.
A sample JSON request is shown below.
GET https://api.transactcdn.com/v2/mcc/rtld/http-authentication-methods HTTP/1.1
Authorization: TOK:12345678-1234-1234-1234-1234567890ab
Accept: application/json
Content-Type: application/json
Host: api.transactcdn.com
A sample JSON response is shown below.
HTTP/1.1 200 OK
Cache-Control: no-cache
Content-Type: application/json; charset=utf-8
Date: Thu, 15 Apr 2021 12:00:00 GMT
Content-Length: 304
{ "@id": "/v2/mcc/rtld/http-authentication-methods", "@type": "Collection", "items": [{ "code": "custom_authentication", "name": "Custom Authentication" }, { "code": "http_basic", "name": "HTTP Basic" }, { "code": "none", "name": "None" } ], "total_items": 3 }