GET
/repos/{owner}/{repo}/secret-scanning/custom-patternsList repository custom patterns
Lists secret scanning custom patterns for a repository.
OAuth app tokens and personal access tokens (classic) need the repo scope to use this endpoint. If this endpoint is only used with public repositories, the token can use the public_repo scope instead.
Fine-grained access tokens require the administration:write repository permission.
- RetriesRetries up to 2×, 500ms backoff, 30s timeout.
ownerstringrequired
The account owner of the repository. The name is not case sensitive.
repostringrequired
The name of the repository without the `.git` extension. The name is not case sensitive.
statestringoptional
Filter custom patterns by state. When absent, returns patterns in all states.
push_protectionstringoptional
Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status.
sortstringoptional
The property to sort the results by.
directionstringoptional
The direction to sort the results by.
beforestringoptional
A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results before this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
afterstringoptional
A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for results after this cursor. For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)."
200Response
idintegerrequired
The ID of the custom pattern.
namestringrequired
The name of the custom pattern.
patternstringrequired
The regular expression of the custom pattern.
slugstringrequired
A URL-friendly identifier for the custom pattern, derived from its name.
statestringrequired
The state of the custom pattern.
push_protection_enabledbooleanrequired
Whether push protection is enabled for this custom pattern.
start_delimiterstringoptional
The start delimiter regex for the custom pattern.
end_delimiterstringoptional
The end delimiter regex for the custom pattern.
must_matcharray<string>optional
List of regexes that the secret must match.
must_not_matcharray<string>optional
List of regexes that the secret must not match.
custom_pattern_versionstringoptional
The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate unintentionally overriding someone else's update.
created_atstringoptional
The date and time the custom pattern was created in ISO 8601 format.
updated_atstringoptional
The date and time the custom pattern was last updated in ISO 8601 format.
403Forbidden
messagestringoptional
documentation_urlstringoptional
urlstringoptional
statusstringoptional
404Resource not found
messagestringoptional
documentation_urlstringoptional
urlstringoptional
statusstringoptional
Error handling
A 403 is returned: Forbidden. A 404 is returned: Resource not found.