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

# Overview

> Manage sub-level accounts within the Singapay Payment Gateway — create, update, and organize account hierarchies with full operational control.

Accounts in the Singapay Payment Gateway are designed to manage sub-level accounts efficiently. You can create, modify, and oversee subordinate accounts to delegate responsibilities, organize account hierarchies, and maintain operational control across your Singapay ecosystem.

## What you can do

<CardGroup cols={2}>
  <Card title="Create Accounts" icon="circle-plus">
    Register new sub-accounts under your merchant and attach them to specific credentials or integrations.
  </Card>

  <Card title="Retrieve Accounts" icon="magnifying-glass">
    List all accounts or fetch a single account by ULID to check its details and current status.
  </Card>

  <Card title="Update Status" icon="toggle-on">
    Activate or deactivate accounts at any time using the update status endpoint.
  </Card>
</CardGroup>

## Account status

| Status     | Description                                          |
| ---------- | ---------------------------------------------------- |
| `active`   | Account is operational and can process transactions. |
| `inactive` | Account is disabled and cannot process transactions. |

## Available endpoints

<CardGroup cols={2}>
  <Card title="List Accounts" icon="list" href="./list-accounts">
    Paginated list of accounts for the authenticated merchant.
  </Card>

  <Card title="Create Account" icon="plus" href="./create-account">
    Register a new sub-account under your merchant.
  </Card>

  <Card title="Get Account" icon="eye" href="./get-account">
    Retrieve a single account by ULID.
  </Card>

  <Card title="Update Account Status" icon="pen" href="./update-account-status">
    Activate or deactivate an account.
  </Card>
</CardGroup>

<Note>
  All endpoints require authentication. See [Authentication](/api-reference/authentication).
</Note>
