Stytch · Example Payload

Stytch Management Create Redirect Url Example

Create creates a redirect URL for an environment.

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Stytch Management Create Redirect Url Example is an example object payload from Stytch, with 5 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titleendpointdescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Create",
  "endpoint": "POST /pwa/v3/projects/:project_slug/environments/:environment_slug/redirect_urls",
  "description": "Create creates a redirect URL for an environment.",
  "request": {
    "method": "POST",
    "path": "/pwa/v3/projects/:project_slug/environments/:environment_slug/redirect_urls",
    "headers": {
      "Authorization": "Basic <base64(project_id:secret)>",
      "Content-Type": "application/json"
    },
    "body": {
      "url": "<url>",
      "valid_types": [],
      "do_not_promote_defaults": true
    }
  },
  "response": {
    "status": 200,
    "body": {
      "request_id": "example-value",
      "status_code": 200
    }
  }
}