Create a key to copy examples filled with your team.
Authentication
Confirm the token and the user it belongs to.
Create a platform application under Developers, then send its access token as a Bearer token. The token is locked to that application's team.
GET /api/v1/users/me
Confirm the token and the team it belongs to.
request.sh
1
curl -sS -X GET \
2
-H 'Authorization: Bearer YOUR_API_KEY' \
3
https://postshiba.com/api/v1/users/me
response.json
1
{
2
"id": 1,
3
"email": "platform-agent@example.com",
4
"first_name": "Production"
5
}