# 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.
    Example: "123"

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

## Header parameters:

  - `Intercom-Version` (string)
    Intercom API version.By default, it's equal to the version set in the app package.
    Enum: "1.0", "1.1", "1.2", "1.3", "1.4", "2.0", "2.1", "2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "2.8", "2.9", "2.10", "2.11", "2.12", "2.13", "2.14", "2.15", "Preview"

## 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,null)
    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,null)
    Optional. Human readable description of the error.
    Example: "Access Token Invalid"

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


