Skip to content

Latest commit

 

History

History
129 lines (69 loc) · 3.46 KB

File metadata and controls

129 lines (69 loc) · 3.46 KB

\RedirectUrlsApi

All URIs are relative to https://api.clerk.dev/v1

Method HTTP request Description
create_redirect_url POST /redirect_urls
delete_redirect_url DELETE /redirect_urls/{id} Delete a redirect URL
get_redirect_url GET /redirect_urls/{id} Retrieve a redirect URL
list_redirect_urls GET /redirect_urls List all redirect URLs

create_redirect_url

crate::models::RedirectUrl create_redirect_url(create_redirect_url_request)

Create a redirect URL

Parameters

Name Type Description Required Notes
create_redirect_url_request Option<CreateRedirectUrlRequest>

Return type

crate::models::RedirectUrl

Authorization

bearerAuth

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_redirect_url

crate::models::DeletedObject delete_redirect_url(id) Delete a redirect URL

Remove the selected redirect URL from the whitelist of the instance

Parameters

Name Type Description Required Notes
id String The ID of the redirect URL [required]

Return type

crate::models::DeletedObject

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_redirect_url

crate::models::RedirectUrl get_redirect_url(id) Retrieve a redirect URL

Retrieve the details of the redirect URL with the given ID

Parameters

Name Type Description Required Notes
id String The ID of the redirect URL [required]

Return type

crate::models::RedirectUrl

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_redirect_urls

Veccrate::models::RedirectUrl list_redirect_urls() List all redirect URLs

Lists all whitelisted redirect_urls for the instance

Parameters

This endpoint does not need any parameter.

Return type

Veccrate::models::RedirectUrl

Authorization

bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]