Retrieve a Project's Symbol Sources
GET /api/0/projects/{organization_slug}/{project_slug}/symbol-sources/
List custom symbol sources configured for a project.
Path Parameters
organization_slug
(string)REQUIREDThe slug of the organization the resource belongs to.
project_slug
(string)REQUIREDThe 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:admin
project:read
project:write
curl https://sentry.io/api/0/projects/{organization_slug}/{project_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
}
}
]