Create Token
POSThttps://api.rapidpipeline.com/api/v2/user/tokens/create
Request
- application/json
Body
required
name stringrequired
The name of the API token
Responses
- 200
success
- text/plain
- Schema
Schema
string
Authorization: http
name: defaulttype: httpscheme: bearerdescription: You can create your API token <a href="https://app.rapidpipeline.com/api_tokens">here</a>. <br /> Our REST API, excluding upload related endpoints, is subject to rate limits (2000 requests per minute per User or IP)
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://api.rapidpipeline.com/api/v2/user/tokens/create' \
-H 'Content-Type: application/json' \
-H 'Accept: text/plain' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{
"name": "name of new api token"
}'
ResponseClear