Skip to main content
POST
/
pwa
/
v3
/
projects
Create
curl --request POST \
  --url https://management.stytch.com/pwa/v3/projects \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "vertical": "ALL",
  "project_slug": "<string>"
}
'
{
  "request_id": "<string>",
  "project": {
    "project_slug": "<string>",
    "name": "<string>",
    "vertical": "ALL",
    "created_at": "<string>"
  },
  "status_code": 123
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json

Request type

name
string
required
vertical
enum<string>
Available options:
ALL,
CONSUMER,
B2B
project_slug
string

Response

Successful response

Response type

request_id
string
required
project
object
required
status_code
integer<int32>
required