action alertersystem_api_user_account_id_get { label: "Retrieves a UserAccount resource." description: "Retrieves a UserAccount resource." provider: alertersystem method: GET path: "/api/user-account/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The UserAccount resource contains basic information regarding the authenticated user account." properties: { accountLevelCode: { type: "string" format: "iri-reference" description: "The account level of the user." } creditsOveragePercentTripSwitch: { type: "integer" description: "If the credits consumed in the billing period are this percentage above the account plan's included credits, cease further consumption of credits until the end of the billing period. Any integer between 1 and 1,000. Optional. Leave blank for no limit." } email: { type: "string" description: "The email address of the user." } firstName: { type: "string" description: "The first name of the user." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } isDelinquent: { type: "boolean" description: "Whether the user account has overdue payments." } lastName: { type: "string" description: "The last name of the user." } timezoneCode: { type: "string" format: "iri-reference" description: "The timezone of the user." } } } }