Authorizations
API Key
WebAuthn (Passkey)
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Cryptographically signed (stamped) request to be passed in as a header. For more info, see
here.
Body
Unique identifier for a given organization. If the request is being made by a WebAuthN user and their sub-organization ID is unknown, this can be the parent organization ID; using the sub-organization ID when possible is preferred due to performance reasons.
Response
A successful response returns the following fields:
Unique identifier for a given organization.
Human-readable name for an organization.
Unique identifier for a given user.
Human-readable name for a user.
curl --request POST \
--url https://api.turnkey.com/public/v1/query/whoami \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header "X-Stamp: <string> (see Authorizations)" \
--data '{
"organizationId": "<string>"
}'
{
"organizationId": "<string>",
"organizationName": "<string>",
"userId": "<string>",
"username": "<string>"
}