Skip to main content

Confirm your account

In order to use the ExyData platform, you need to confirm your account. We want to make sure that you're not an automation, right? :)

To do this, we sent you an email with a code number to confirm your account. If you didn't receive the email, please check your spam folder. If you still can't find it, please contact us.

The confirmation process can be done in three ways:

Confirm your account using the CLI

Download the CLI

Linux

curl -L https://get.exydata.com/linux/exy -o exy

Make executable

chmod +x exy

Windows

curl https://get.exydata.com/windows/exy.exe -o exy.exe

Email confirmation

After you sign up, we sent you an email with a link (and code number) to confirm your account. If you didn't receive the email, please check your spam folder. If you still can't find it, please contact us.

Using the CLI

To confirm your account in the the ExyData API platform, you need to run the following command:

You will find the code number in the email that we sent you.

exy confirm \
--email john-doe@example.com \
--code 123456

The response will be a JSON object with the following properties:

{
  'The account was confirmed successfully'
}

Using the API

To login to the ExyData API platform, you need to send a POST request to the following endpoint:

https://api.exydata.com/v1/accounts/confirm

You will find the code number in the email that we sent you.

The request body should be a JSON object with the following properties:

  • email: Your email address
  • code: The code number that we sent to your email

The response will be a JSON object with the following properties:

  • message: The account was confirmed successfully

Example

curl -X POST \
  https://api.exydata.com/v1/accounts/confirm \
  -H 'Content-Type: application/json' \
  -d '{
    "email": "john-doe@example.com.com",
    "code": "123456"
}'

Response

{
  "message": "The account was confirmed successfully"
}

Once the account is confirmed, you can login to the ExyData API platform and deploy your first application.