Unique identifier for a given organization.
Unique identifier for a session profile.
A successful response returns the following fields:
sessionProfile fieldShow sessionProfile details
curl --request POST \
--url https://api.turnkey.com/public/v1/query/get_session_profile \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>",
"sessionProfileId": "<string>"
}'
{
"sessionProfile": {
"sessionProfileId": "<string>",
"sessionProfileName": "<string>",
"scope": "<string>",
"expirationSeconds": "<string>",
"notes": "<string>",
"createdAt": {
"seconds": "<string>",
"nanos": "<string>"
},
"updatedAt": {
"seconds": "<string>",
"nanos": "<string>"
}
}
}