action alertersystem_api_credits_consumption_id_get { label: "Retrieves a CreditsConsumption resource." description: "Retrieves a CreditsConsumption resource." provider: alertersystem method: GET path: "/api/credits-consumption/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The CreditsConsumption resource is a chronological record of all the credits that have been consumed, including the reason for the consumption." properties: { createdAt: { type: "string" format: "date-time" description: "When the resource instance was created. This date-time is in the UTC timezone." } creditsConsumptionEventCode: { type: "string" description: "The type of event that consumed the credits." } creditsConsumptionNotes: { type: "string" description: "Notes that add additional information to the resource." } creditsEventId: { type: "string" format: "uuid" description: "The ID of the event (Ping resource or AlertLog resource) that consumed the credits." } creditsEventIri: { type: "string" description: "The IRI of the event that is related to this resource." } creditsUsed: { type: "string" description: "The number of credits that were consumed." } id: { type: "string" format: "uuid" description: "The unique identifier of the resource instance." } } } }