Stytch · Example Payload

Stytch Management Create Project Example

Create creates a project, including both a live and test environment.

AuthenticationIdentityPasswordlessSecurityB2BConnected AppsMCPAI AgentsDeveloper Tools

Stytch Management Create Project 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",
  "description": "Create creates a project, including both a live and test environment.",
  "request": {
    "method": "POST",
    "path": "/pwa/v3/projects",
    "headers": {
      "Authorization": "Basic <base64(project_id:secret)>",
      "Content-Type": "application/json"
    },
    "body": {
      "name": "<name>",
      "project_slug": "<project_slug>"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "request_id": "example-value",
      "status_code": 200
    }
  }
}