Retrieves repository list for a given owner

GET /api/0/organizations/{organization_id_or_slug}/prevent/owner/{owner}/repositories/

Retrieves repository data for a given owner.

Path Parameters

organization_id_or_slug (string)
REQUIRED

The ID or slug of the organization the resource belongs to.

owner (string)
REQUIRED

The owner of the repository.

Query Parameters:

first (integer)

The number of results to return from the start of the list.

last (integer)

The number of results to return from the end of the list.

cursor (string)

The cursor to start the query from. Will return results after the cursor if used with first or before the cursor if used with last.

term (string)

The term substring to filter test name strings by using the contains operator.

Scopes

<auth_token> requires one of the following scopes:
    Copied
    curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/prevent/owner/{owner}/repositories/ \
     -H 'Authorization: Bearer <auth_token>'
    RESPONSESCHEMA
    Copied
    .
    Was this helpful?