Skip to main content
GET
/
v1
/
applications
/
{applicationId}
/
auth-flows
List Application Authentication Flows
curl --request GET \
  --url https://api.anchorbrowser.io/v1/applications/{applicationId}/auth-flows \
  --header 'anchor-api-key: <api-key>'
{
  "auth_flows": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "is_recommended": true,
      "methods": [
        "<string>"
      ],
      "custom_fields": [
        {
          "name": "<string>"
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

anchor-api-key
string
header
required

API key passed in the header

Path Parameters

applicationId
string<uuid>
required

The ID of the application

Response

List of authentication flows retrieved successfully

auth_flows
object[]