action sinao_app_contacts_relationships_get { label: "Get a relationship" description: "Get a relationship by id" provider: sinao method: GET path: "/apps/{appId}/relationships/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { accounting_infos: { type: "object" properties: { balance_initial_amount: { type: "integer" } customer_id: { type: "string" } reference: { type: "string" } supplier_id: { type: "string" } } } id: { type: "integer" } importance_level: { type: "integer" } is_customer: { type: "boolean" } is_notifying: { type: "boolean" } is_prospect: { type: "boolean" } is_supplier: { type: "boolean" } metadata: { type: "array" items: { type: "object" } } note: { type: "string" } rating: { type: "integer" } } } }