action netboxdemo_circuits_providers_create { label: "circuits_providers_create" description: "" provider: netboxdemo method: POST path: "/circuits/providers/" encoding: json output: { type: "object" required: ["name", "slug"] properties: { account: { type: "string" } admin_contact: { type: "string" } asn: { type: "integer" description: "32-bit autonomous system number" } circuit_count: { type: "integer" } comments: { type: "string" } created: { type: "string" format: "date" } custom_fields: { type: "object" } id: { type: "integer" } last_updated: { type: "string" format: "date-time" } name: { type: "string" } noc_contact: { type: "string" } portal_url: { type: "string" format: "uri" } slug: { type: "string" format: "slug" } tags: { type: "array" items: { type: "string" } } } } }