Get Token
GEThttps://api.rapidpipeline.com/api/v2/user/tokens/:id
Request
Path Parameters
id integerrequired
The id of the API token
Example: 42
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
id integer
tokenable_type string
tokenable_id integer
name string
abilities string[]
last_used_at string
created_at string
updated_at string
plain_text string
{
"id": 1,
"tokenable_type": "App\\Models\\User",
"tokenable_id": 45,
"name": "name of api token",
"abilities": [
"*"
],
"last_used_at": null,
"created_at": "2021-10-26T10:38:07.000000Z",
"updated_at": "2021-10-26T10:38:07.000000Z",
"plain_text": ""
}
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/:id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
ResponseClear