--- swagger: "2.0" info: x-ibm-name: inventory title: Inventory version: 1.0.0 description: "" schemes: - https basePath: /v1 consumes: - application/json produces: - application/json - fsc-api-admin@fedex.com 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 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 clientIdHeader: type: apiKey in: header name: X-IBM-Client-Id description: Enter Client Id clientSecretHeader: type: apiKey in: header name: X-IBM-Client-Secret description: Enter Client Secret security: - clientIdHeader: [] clientSecretHeader: [] oauth2: - Fulfillment_Returns x-ibm-configuration: testable: true enforced: true phase: realized paths: /inventory: get: responses: 200: description: 200 OK summary: Get Inventory description: Retrieves the inventory details for one or more SKUs from one or more facilities. When facility is not provide in the request, network level inventory will be returned by the call. parameters: - name: sku type: string required: false in: query description: SKU of the Product. This parameter allows upto 25 SKUs. - name: facility type: string required: false in: query description: Inventory information need to be retrieved from a specific facility. If facility is not specified, response will return network level inventory across all facilities. - name: pageLimit type: string required: false in: query description: 'Number of records to be retrieved in each page. Allowed values: 1 to 100. Default is 50.' - name: AccessToken type: string required: false in: header description: Enter AccessToken, it is mandatory in case of basic authentication. - name: offset type: string required: false in: query description: Offset value to be passed retrieve the previous/next page. Not applicable for initial request consumes: - text/plain security: - clientIdHeader: [] clientSecretHeader: [] - oauth2: - Fulfillment_Returns tags: [] x-ibm-endpoints: - endpointUrl: https://api-sandbox.supplychain.fedex.com/api/sandbox type: - development ...