action reverb_post_my_conversations { label: "Start a conversation" description: "Start a conversation" provider: reverb method: POST path: "/my/conversations" encoding: json input: { type: "object" required: ["body"] properties: { body: { type: "string" description: "The body of the message" } cloudinary_photos: { type: "array" description: "An array of cloudinary data hashes (Reverb internal use only)." items: { type: "string" } } listing_id: { type: "integer" description: "The id of the listing being discussed" } recipient_id: { type: "integer" description: "The id of the user you are trying to contact" } recipient_uuid: { type: "string" description: "The uuid of the user you are trying to contact" } shop_id: { type: "string" description: "The id of the shop you are trying to contact" } } } output: { type: "object" additionalProperties: true } }