List attributes keys
GET
/v1/log/list_attributes_keys/
const url = 'https://example.com/v1/log/list_attributes_keys/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/v1/log/list_attributes_keys/ \ --header 'Authorization: Bearer <token>'Return all log and resource attribute keys.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Media typeapplication/json
Array<object>
object
log_attributes
required
Array
resource_attributes
required
Array
Examplegenerated
[ { "log_attributes": [ "example" ], "resource_attributes": [ "example" ] }]