action apacta_get_project_statuses_project_status_id { label: "Get a single project status" provider: apacta method: GET path: "/project_statuses/{project_status_id}" encoding: json input: { type: "object" properties: { project_status_id: { type: "string" } } required: ["project_status_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } id: { type: "string" format: "uuid" } identifier: { type: "string" description: "One of 3 values" enum: ["ready_for_billing", "open", "closed"] } is_custom: { type: "boolean" } modified: { type: "string" format: "dateTime" } name: { type: "string" } } } success: { type: "boolean" } } } }