action alertersystem_api_credits_consumption_get_collection { label: "Retrieves the collection of CreditsConsumption resources." description: "Retrieves the collection of CreditsConsumption resources." provider: alertersystem method: GET path: "/api/credits-consumption" encoding: json input: { type: "object" properties: { page: { type: "integer" } "properties[]": { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "array" items: { 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." } } } } }