Create Account

Getting Started

To start using the Fetch API, first you’ll need to create an account on the Developer Platform:

To start using the Fetch API, first you’ll need to create an account on the Developer Platform:

  1. Go to the Developer Dashboard & click ‘Login’
  2. Switch to the Sign Up tab, and follow instructions to create an account with your Google login credentials

Once you have created an account, you are ready to start using the Fetch API.

Authentication

To interact with the Fetch API, you’ll need to use an authentication token. You can access your token from your Developer Platform account.

  1. Log into your Developer Dashboard
  2. On the welcome screen, there will be a button that says copy token.
  3. Click 'copy token' and the token will be copied to your clipboard.

You can now start interacting with the Fetch API. Let’s get started.

Your Basic Information

When you create an account, we automatically create a personal organization for you which contains your personal digital twin.

We will go into detail about what these mean, but first let’s see what information is available.

To make this request, you’ll need your authorization token.

curl --location --request GET '<API_URL>/app/me/account/' \ --header 'Authorization: Token <ACCESS_TOKEN>'

Upon a successful request, you will be presented with the following information:

{ "user": { "id": "<YOUR SYSTEM USER ID>", "username": "<YOUR USERNAME AS PROVIDED BY AUTH0>", "is_active": true, "preferences": {}, "date_joined": "<TIMESTAMP OF WHEN YOU JOINED>", "provider": "auth0", "provider_type": "standard" }, "organization": { "id": "<YOUR PERSONAL ORGANIZATION ID>", "name": "Personal", "allow_auto_join": true, "features": [], "subscription_info": {} }, "twin_id": "<YOUR PERSONAL DIGITAL TWIN ID>" }

Let’s go into more detail about organizations and twins.