openapi: 3.1.0 info: title: Goodyear API Management Portal (GaaS) Catalog Work Orders API description: The Goodyear API Management Portal provides access to Goodyear's suite of APIs for tire and fleet management services including catalog, work order, and service ticket management. version: 1.0.0 contact: name: Goodyear url: https://gaas-portal.goodyear.com/ servers: - url: https://gaas-portal.goodyear.com description: Goodyear API Management Portal tags: - name: Work Orders paths: /work-orders: get: operationId: getWorkOrders summary: Get Work Orders description: Retrieve service work orders for commercial truck tire services. responses: '200': description: Successful response with work orders. content: application/json: schema: type: object '401': description: Unauthorized. tags: - Work Orders post: operationId: createWorkOrder summary: Create Work Order description: Create a new service work order for commercial truck tire services. requestBody: required: true content: application/json: schema: type: object responses: '201': description: Work order created successfully. '401': description: Unauthorized. tags: - Work Orders