Retrieve a Project's Symbol Sources
GET /api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/symbol-sources/
List custom symbol sources configured for a project.
Path Parameters
organization_id_or_slug(string)REQUIREDThe id or slug of the organization the resource belongs to.
project_id_or_slug(string)REQUIREDThe id or slug of the project the resource belongs to.
Query Parameters:
id(string)The ID of the source to look up. If this is not provided, all sources are returned.
Scopes
You need to authenticate via bearer auth token.
<auth_token> requires one of the following scopes:project:adminproject:readproject:write
curl https://sentry.io/api/0/projects/{organization_id_or_slug}/{project_id_or_slug}/symbol-sources/ \
 -H 'Authorization: Bearer <auth_token>'RESPONSESCHEMA
[
  {
    "id": "honk",
    "name": "honk source",
    "layout": {
      "type": "native"
    },
    "type": "http",
    "url": "http://honk.beep",
    "username": "honkhonk",
    "password": {
      "hidden-secret": true
    }
  },
  {
    "id": "beep",
    "name": "beep source",
    "layout": {
      "type": "native"
    },
    "type": "gcs",
    "bucket": "mybucket",
    "client_email": "honk@beep.com",
    "private_key": {
      "hidden-secret": true
    }
  }
]