Authentication
Authentication
Get Access Token
POST /es/v2/oauth/client-token{
"clientId" : string,
"clientSecret": string
}{
"accessToken": string,
"tokenType": string,
"expiry": 86400, // in seconds
}curl --location '<host>/es/v2/oauth/client-token' \
--header 'Content-Type: application/json' \
--data '{
"clientId" : "sv1bF0b1dJ1e4chd",
"clientSecret": "B3dbXd61f122Of3db9dP0Hd6d547da02"
}'Authentication Headers
Last updated