action elmah_deployments_get_all { label: "Fetch a list of deployments." description: "Required permission: `deployments_read`" provider: elmah method: GET path: "/v3/deployments" encoding: json output: { type: "array" items: { type: "object" properties: { created: { type: "string" format: "date-time" description: "When was this deployment created." } createdBy: { type: "string" description: "The elmah.io id of the user creating this deployment. Since deployments are created on a subscription, \nthe CreatedBy will contain the id of the user with the subscription." } description: { type: "string" description: "Sescription of this deployment in markdown or clear text." } id: { type: "string" description: "The ID of this deployment." } logId: { type: "string" description: "If the deployment is attached a single log, this property is set to the ID of that log. \nIf null, the deployment is attached all logs on the organization." } userEmail: { type: "string" description: "The email of the person responsible for creating this deployment." } userName: { type: "string" description: "The name of the person responsible for creating this deployment." } version: { type: "string" description: "The version number of this deployment. The value of version can be a SemVer compliant string or any other \nsyntax that you are using as your version numbering scheme." } } } } }