> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dema.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Sitoo POS

> This guide outlines the process of integrating the Sitoo Point of Sale (POS) system with our platform to synchronize in-store sales and return data.

### Supported data types

<CardGroup cols={2}>
  <Card title="Orders" icon="file-invoice-dollar">
    In-store transactions
  </Card>

  <Card title="Returns" icon="rotate-left">
    Return details
  </Card>
</CardGroup>

## Prerequisites

* Administrative access to your Sitoo POS backoffice system

## Step-by-step integration guide

<Steps>
  <Step title="Request API credentials">
    1. Reach out to Sitoo support or your Sitoo Customer Success Manager to request API credentials for an integration.
    2. Sitoo will provide you with the following information:
       * Account ID
       * API User ID
  </Step>

  <Step title="Get API credentials">
    1. Log in to your Sitoo Administration portal
    2. Navigate to the "Settings" and select "Sitoo REST API"
    3. Find the API user you got from the previous step
    4. Click on "create new password" next to the API user
    5. Store these credentials securely as they will be needed for the integration
       * API ID: The unique identifier for your API user
       * Password: The secret password for authentication
  </Step>
</Steps>

## Submit your credentials

Once you have gathered all the necessary credentials, please package them as shown below and send them to your Customer Success Manager:

```json theme={null}
{
  "apiId": "123456-123",
  "password": "api_user_password",
  "accountId": "123456"
}
```

The accountId is the numeric identifier for your Sitoo account and likely match the first part of the api id.

<Note>For security reasons, ensure you send this information through a secure channel as recommended by the Customer Success Team.</Note>

## Data synchronization process

After the integration is set up, our platform will:

1. **Initial data load**: Perform a full data sync of historical orders and returns
2. **Ongoing synchronization**: Update data daily through API polling

## Troubleshooting and support

If you encounter any issues during this process or have questions, please reach out to our support team for assistance.

## Additional resources

For more information on managing your Sitoo account and understanding the API, visit the following links:

* [Sitoo API Documentation](https://developer.sitoo.com/api-reference/overview)
