action intellifi_get_authinfo { label: "Authentication information" provider: intellifi method: GET path: "/authinfo" encoding: json output: { type: "object" properties: { api_key_id: { type: "string" description: "Reference to the static API key (/api/keys) used to authenticate this request (when auth_method=static_api_key)" } auth_method: { type: "string" description: "What kind of authentication was used" enum: ["user_session", "internal", "static_api_key"] } authenticated: { type: "boolean" description: "Whether or not you are authenticated" } permissions: { type: "object" properties: { mutate: { type: "boolean" description: "Whether or not this session can mutate resources" } } } url: { type: "string" description: "Url to the individual resource." } user_id: { type: "string" description: "Reference to the user account (/api/users) used to authenticate this request (when auth_method=user_session)" } } } }