--- swagger: "2.0" info: x-ibm-name: location title: Location version: 1.0.0 description: "" schemes: - https basePath: /v1 consumes: - application/json produces: - application/json securityDefinitions: oauth2: type: oauth2 description: "" flow: accessCode authorizationUrl: https://api-sandbox.supplychain.fedex.com/api/sandbox/fsc/oauth2/authorize scopes: Fulfillment_Returns: Read/Write access to Orders, Items, RMAs, Inventory,location,tracking objects tokenUrl: https://api-sandbox.supplychain.fedex.com/api/sandbox/fsc/oauth2/token x-tokenIntrospect: url: https://vp1npmqdp01-v1.genco.com/api/sandbox/fsc/oauth/introspect Client_Secret: type: apiKey description: Enter Client Secret in: header name: X-IBM-Client-Secret Client_Id: type: apiKey in: header name: X-IBM-Client-Id description: Enter Client ID security: - Client_Id: [] Client_Secret: [] oauth2: - Fulfillment_Returns x-ibm-configuration: testable: true enforced: true phase: realized paths: /locations: get: responses: 200: description: 200 OK summary: Location Service description: The Locations API provides the capability of retrieving FedEx Office locations. parameters: - name: addressLine1 type: string required: true in: query description: 123 Main Street - name: addressLine2 type: string required: true in: query description: 123 Main Street - name: city type: string required: true in: query description: PLUM - name: stateCode type: string required: true in: query description: PA - name: zipCode type: string required: true in: query description: "15238" - name: countryCode type: string required: true in: query description: US - name: distance type: string required: false in: query description: "10" - name: limit type: string required: false in: query description: "3" - name: accessToken type: string required: false in: header description: Enter AccessToken, it is mandatory in case of basic authentication. security: - Client_Secret: [] Client_Id: [] - oauth2: - Fulfillment_Returns tags: [] x-ibm-endpoints: - endpointUrl: https://api-sandbox.supplychain.fedex.com/api/sandbox type: - development ...