openapi: 3.1.0
info:
title: Goodyear API Management Portal (GaaS) Catalog Service Tickets 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: Service Tickets
paths:
/service-tickets:
get:
operationId: getServiceTickets
summary: Get Service Tickets
description: Retrieve service tickets for commercial truck tire services.
responses:
'200':
description: Successful response with service tickets.
content:
application/json:
schema:
type: object
'401':
description: Unauthorized.
tags:
- Service Tickets
post:
operationId: createServiceTicket
summary: Create Service Ticket
description: Create a new service ticket for commercial truck tire services.
requestBody:
required: true
content:
application/json:
schema:
type: object
responses:
'201':
description: Service ticket created successfully.
'401':
description: Unauthorized.
tags:
- Service Tickets