---
title: "Gets specific Supplier Return Item Source by unique id"
url: "https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/d3750347-3c58-45e9-b3b1-b23a00e713ed/operations/get-supplierreturnitemsource-id"
---

> Full API specification: https://developer.retailexpress.com.au/apis/retail-express-api-21-v2/versions/d3750347-3c58-45e9-b3b1-b23a00e713ed.md

# Gets specific Supplier Return Item Source by unique id

`GET` `/supplierreturnitemsource/{id}`

Operation ID: `get-supplierreturnitemsource-id`

Gets specific Supplier Return Item Source by unique id

## Path parameters

- `id` (integer, int32, required) - Format - int32. Supplier Return Source id

## Header parameters

- `x-api-key` (string, required) - Api subscription key
- `Cache-Control` (string, optional)
- `Authorization` (string, required) - Bearer token for authorization (e.g., Bearer <token>)

## Responses

- `200` - Returns found Supplier Return Item Source
- `400` - Bad request
- `401` - Unauthorized
- `403` - Forbidden
- `404` - Supplier Return Item Source not found

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: Retail Express API
  version: V2
servers:
  - url: https://api.retailexpress.com.au/v2
paths:
  /supplierreturnitemsource/{id}:
    get:
      tags:
        - supplierreturnitemsource
      summary: Gets specific Supplier Return Item Source by unique id
      description: Gets specific Supplier Return Item Source by unique id
      operationId: get-supplierreturnitemsource-id
      parameters:
        - name: id
          in: path
          description: Format - int32. Supplier Return Source id
          required: true
          schema:
            type: integer
            description: Supplier Return Source id
            format: int32
            example: 1
        - name: x-api-key
          in: header
          description: Api subscription key
          required: true
          schema:
            type: string
        - name: Cache-Control
          in: header
          required: false
          schema:
            type: string
            default: no-cache
        - name: Authorization
          in: header
          required: true
          description: Bearer token for authorization (e.g., Bearer <token>)
          schema:
            type: string
      responses:
        "200":
          description: Returns found Supplier Return Item Source
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/SupplierReturnItemSource"
              example:
                id: 0
                name: string
        "400":
          description: Bad request
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ProblemDetails"
              example:
                type: string
                title: string
                status: 0
                detail: string
                instance: string
        "401":
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ProblemDetails"
              example:
                type: string
                title: string
                status: 0
                detail: string
                instance: string
        "403":
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ProblemDetails"
              example:
                type: string
                title: string
                status: 0
                detail: string
                instance: string
        "404":
          description: Supplier Return Item Source not found
          content:
            application/json:
              schema:
                $ref: "#/components/schemas/ProblemDetails"
              example:
                type: string
                title: string
                status: 0
                detail: string
                instance: string
security: []
components:
  schemas:
    SupplierReturnItemSource:
      title: ""
      type: object
      properties:
        id:
          type: integer
          description: Supplier Return Item source Id.
          format: int32
          nullable: true
        name:
          type: string
          description: Supplier Return Item source name
          nullable: true
      additionalProperties: false
      description: Supplier Return Item Product Model
    ProblemDetails:
      title: ""
      type: object
      properties:
        type:
          type: string
          nullable: true
        title:
          type: string
          nullable: true
        status:
          type: integer
          format: int32
          nullable: true
        detail:
          type: string
          nullable: true
        instance:
          type: string
          nullable: true
      additionalProperties: {}
```
