Sign in

Create Team

documented

Create a new Team.

POST /teams/Teamsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://signrequest.com/api/v1/teams/" \
  -X POST \
  -H "Authorization: Token {{SIGNREQUEST_API_KEY}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"name": "{{$name}}", "subdomain": "{{$subdomain}}", "website": "{{$website}}", "phone": "{{$phone}}"}' 
# Sources: SignRequest API docs specify base URL https://signrequest.com/api/v1 and POST /teams/ for creating a team; Teams can be created with a Team Name (name) and a SignRequest Subdomain (subdomain), with optional website and phone fields; Authentication uses an API key in the Authorization header with the "Token" scheme. See: https://signrequest.com/api/v1/docs/ and the SignRequest Node client docs.