Get Log Provider

Get Log Provider

Retrieves a specific Log Provider.

Request
URI
GET
https://{api_host}/cloudapi/1.0.0/logProviders/{logProviderId}
COPY
Path Parameters
string
logProviderId
Required

logProviderId


Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns LogProvider of type(s) application/json;version=39.1
{
    "id": "string",
    "username": "string",
    "password": "string",
    "url": "string",
    "authProvider": "string"
}
string
id
Optional

The unique ID of this Log Provider. On updates, this ID is required for the object.

string As ^(?!\s+$).+
username
Required
Constraints: minLength: 1 maxLength: 32

username to connect to the Log Provider server.

string As ^(?!\s+$).+
password
Required
Constraints: minLength: 1 maxLength: 128

password to connect to the Log Provider server.

string As ^(?!\s+$).+
url
Required
Constraints: minLength: 7 maxLength: 256

url to connect to the Log Provider server.

string
authProvider
Required

Auth provider to connect to the Log Provider server. One of the following:

  • LOCAL
  • AD
  • VIDM

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/cloudapi/1.0.0/logProviders/{logProviderId}