action x_delete_post { label: "Delete Post" description: "Deletes a specific Post by its ID, if owned by the authenticated user." provider: x method: DELETE path: "/2/tweets/{id}" encoding: json scopes: ["tweet.write", "tweet.read"] input: { type: "object" properties: { id: { type: "string" description: "Unique identifier of this Tweet. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers." } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" required: ["deleted"] properties: { deleted: { type: "boolean" } } } errors: { type: "array" items: { type: "object" description: "An HTTP Problem Details object, as defined in IETF RFC 7807 (https://tools.ietf.org/html/rfc7807)." required: ["type", "title"] properties: { detail: { type: "string" } status: { type: "integer" } title: { type: "string" } type: { type: "string" } } } } } } }