action apacta_get_offer_statuses_offer_status_id { label: "Get a single offer status" provider: apacta method: GET path: "/offer_statuses/{offer_status_id}" encoding: json input: { type: "object" properties: { offer_status_id: { type: "string" } } required: ["offer_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 6 values" enum: ["accepted", "rejected", "draft", "sent", "sent_and_seen", "declined"] } is_custom: { type: "boolean" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } name: { type: "string" } } } success: { type: "boolean" } } } }