Modify a Domain Authentication
Modify the token authentication for an ingest domain.
Request
Request-Line
PUT /lls/v1.0/domain/{domain}/authentication
Request Parameters
Path Parameters
Parameter | Type | Required | Description |
---|---|---|---|
domain | String | Mandatory | ingest domain name |
Body Parameters
Parameter | Type | Required | Description |
---|---|---|---|
authentication | Boolean | Mandatory | enable authentication or not. |
authenticationType | String | Optional | authentication type. Valid values: default, 3rdparty. |
3rdPartyEndpoint | String | Optional | 3rd party endpoint for 3rdparty authentication |
Response
Response Body
Parameter | Type | Required | Description |
---|---|---|---|
domain | String | Mandatory | domain name |
created | Timestamp | Mandatory | Timestamp of created time in UTC timezone. Default is now. |
authentication | Boolean | Mandatory | enable authentication or not. |
authenticationType | String | Optional | authentication type. Valid values: default, 3rdparty. |
authenticationKey | String | Optional | authentication key for default authentication. |
3rdPartyEndpoint | String | Optional | 3rd party endpoint for 3rdparty authentication |
Status Codes, Error Codes and Error Messages
Status Code | Error Code | Error Message |
---|---|---|
400 | LLS.Domain.Invalid | Domain name invalid. |
Examples
Enable default authentication
Request
PUT /lls/v1.0/domain/ingest.example.com/authentication HTTP/1.1
{
"authentication": true,
"authenticationType": "default"
}
Successful Response Body
{
"domain": "ingest.example.com",
"created": "2025-07-10T09:30:00Z",
"authentication": true,
"authenticationType": "default",
"authenticationKey": "abcdef123456"
}
Enable 3rd party authentication
Request
PUT /lls/v1.0/domain/ingest-3rdparty.example.com/authentication HTTP/1.1
{
"domain": "ingest-3rdparty.example.com",
"authentication": true,
"authenticationType": "3rdparty",
"3rdPartyEndpoint": "https://auth.example.com/check"
}
Successful Response Body
{
"domain": "ingest-3rdparty.example.com",
"created": "2025-07-10T09:30:00Z",
"authentication": true,
"authenticationType": "3rdparty",
"3rdPartyEndpoint": "https://auth.example.com/check"
}
Disable token authentication
Request
PUT /lls/v1.0/domain/ingest.example.com/authentication HTTP/1.1
{
"authentication": false
}
Successful Response Body
{
"domain": "ingest.example.com",
"created": "2025-07-10T09:30:00Z",
"authentication": false
}
Best Practices
Rate Limiting
Rate Limits
Rate limiting is posed upon the API, please kindly check your API calls to ensure complying with the rate limit below:
- 100 requests per minute
- 1000 requests per hour