action contract_p_post_inboxes_resource { label: "Create an inbox" description: "Create a new inbox in the given **project**\n\n**Permission required:** create_inbox" provider: contract_p method: POST path: "/inboxes" encoding: json input: { type: "object" properties: { "X-Fields": { type: "string" format: "mask" } name: { type: "string" } project: { type: "string" } } required: ["name", "project"] additionalProperties: false } output: { type: "object" } }