action ix_api_network_service_cancellation_policy_read { label: "network_service_cancellation_policy_read" description: "The cancellation-policy can be queried to answer\nthe questions:\n\nIf I cancel my service, *when will it be technically\ndecommissioned*?\nIf I cancel my service, *until what date will I be charged*?\n\nWhen the query parameter `decommision_at` is not provided\nit will provide the first possible cancellation date\nand charge period if cancelled at above date.\n\nThe granularity of the date field is a day, the start and end\nof which are to be interpreted by the IXP (some may use UTC,\nsome may use their local time zone)." provider: ix_api method: GET path: "/network-services/{id}/cancellation-policy" encoding: json input: { type: "object" properties: { decommission_at: { type: "string" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" } }