Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

You can generate an API key from your Dashboard at any time.

Make your first request

To make your first request, send an authenticated request to the /me endpoint. This will give you your basic details, which is nice.

Take a look at how you might call this method using curl:

curl -X 'GET' \
  'https://v2-prod-api.texau.com/api/v1/public/me' \
  -H 'accept: application/json' \
  -H 'X-TexAu-Context: {"orgUserId":"0612b8","workspaceId":"4900613df"}' \
  -H 'Authorization: Bearer <token>'

Last updated