action ebay_delete_fulfillment_policy { label: "deleteFulfillmentPolicy" description: "This method deletes a fulfillment policy. Supply the ID of the policy you want to delete in the fulfillmentPolicyId path parameter." provider: ebay method: DELETE path: "/fulfillment_policy/{fulfillmentPolicyId}" encoding: json input: { type: "object" properties: { fulfillmentPolicyId: { type: "string" } } required: ["fulfillmentPolicyId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }