action netbox_tenancy_contacts_read { label: "tenancy_contacts_read" description: "" provider: netbox method: GET path: "/tenancy/contacts/{id}/" encoding: json output: { type: "object" required: ["name"] properties: { address: { type: "string" } comments: { type: "string" } created: { type: "string" format: "date-time" } custom_fields: { type: "object" } description: { type: "string" } display: { type: "string" } email: { type: "string" format: "email" } group: { type: "object" required: ["name", "slug"] properties: { _depth: { type: "integer" } contact_count: { type: "integer" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } link: { type: "string" format: "uri" } name: { type: "string" } phone: { type: "string" } tags: { type: "array" items: { type: "object" required: ["name", "slug"] properties: { color: { type: "string" } display: { type: "string" } id: { type: "integer" } name: { type: "string" } slug: { type: "string" format: "slug" } url: { type: "string" format: "uri" } } } } title: { type: "string" } url: { type: "string" format: "uri" } } } }