# Retrieve a redirect

You can fetch the details of a single redirect by making a GET request to `https://api.intercom.io/help_center/help_centers/{help_center_id}/redirects/{id}`.
Requires the `read_help_center_redirects_scope` OAuth scope. Set `Intercom-Version: Preview`.

Endpoint: GET /help_center/help_centers/{help_center_id}/redirects/{id}
Version: Preview
Security: bearerAuth

## Path parameters:

  - `help_center_id` (string, required)
    The unique identifier for the help center.

  - `id` (string, required)
    The unique identifier for the redirect.

## Header parameters:

  - `Intercom-Version` (string)

## Response 200 fields (application/json):

  - `id` (string)
    The unique identifier for the redirect.
    Example: 26

  - `type` (string)
    The type of the object - `help_center_redirect`.
    Enum: "help_center_redirect"

  - `from_url` (string)
    The source URL that is redirected. An absolute URL within the help center's URL space.
    Example: http://help-center.test/lovelyhelpcenter/old-page

  - `locale` (string)
    The locale of the redirect's target. For article targets this is the bound translation's locale, which may differ from the requested locale if no translation exists in that locale.
    Example: en

  - `help_center_id` (string)
    The unique identifier for the help center the redirect belongs to.
    Example: 7

  - `target_type` (string)
    The type of the redirect target.
    Enum: "article", "collection"

  - `target_id` (string)
    The unique identifier of the target article or collection. For article targets this is the Article ID.
    Example: 11

  - `created_at` (integer)
    The time the redirect was created as a UTC Unix timestamp.
    Example: 1781619405

  - `updated_at` (integer)
    The time the redirect was last updated as a UTC Unix timestamp.
    Example: 1781619405

## Response 401 fields (application/json):

  - `type` (string, required)
    The type is error.list
    Example: error.list

  - `request_id` (string)
    Example: f93ecfa8-d08a-4325-8694-89aeb89c8f85

  - `errors` (array, required)
    An array of one or more error objects

  - `errors.code` (string, required)
    A string indicating the kind of error, used to further qualify the HTTP response code
    Example: unauthorized

  - `errors.message` (string)
    Optional. Human readable description of the error.
    Example: Access Token Invalid

  - `errors.field` (string)
    Optional. Used to identify a particular field or query parameter that was in error.
    Example: email

## Response 404 fields (application/json):

  - `type` (string, required)
    The type is error.list
    Example: error.list

  - `request_id` (string)
    Example: f93ecfa8-d08a-4325-8694-89aeb89c8f85

  - `errors` (array, required)
    An array of one or more error objects

  - `errors.code` (string, required)
    A string indicating the kind of error, used to further qualify the HTTP response code
    Example: unauthorized

  - `errors.message` (string)
    Optional. Human readable description of the error.
    Example: Access Token Invalid

  - `errors.field` (string)
    Optional. Used to identify a particular field or query parameter that was in error.
    Example: email

