action sinao_app_contacts_persons_create { label: "Create a person" description: "Create a new person. Represent a private contact" provider: sinao method: POST path: "/apps/{appId}/persons" encoding: json input: { type: "object" properties: { civility: { type: "string" } firstname: { type: "string" } lastname: { type: "string" } metadata: { type: "array" items: { type: "object" } } picture: { type: "object" } } required: ["lastname"] additionalProperties: false } output: { type: "object" } }