action maif_service_delete_target { label: "Delete a service descriptor target" description: "Delete a service descriptor target" provider: maif method: DELETE path: "/api/services/{serviceId}/targets" encoding: json input: { type: "object" properties: { serviceId: { type: "string" } } required: ["serviceId"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "A Target is where an HTTP call will be forwarded in the end from a service domain" required: ["host", "scheme"] properties: { host: { type: "string" format: "hostname" description: "The host on which the HTTP call will be forwarded. Can be a domain name, or an IP address. Can also have a port" } scheme: { type: "string" description: "The protocol used for communication. Can be http or https" } } } } }