Atomic API

Introduction

Base URL, authentication, conventions, and pagination

Overview

The Atomic API base URL is https://atvoice-api.atomtelecom.com.au. All requests must be made over HTTPS. The API follows RESTful conventions using standard HTTP methods (GET, POST, PATCH, DELETE) with JSON-encoded request and response bodies.

You can obtain your access token from Account Settings > General Settings > Profile Settings in the Atomic portal at https://atomic.atomtelecom.com.au.

Conventions

All property names use snake_case. Temporal values are formatted as ISO 8601. Use null instead of empty strings for absent values.

Authorization

Include your access token in the Authorization header of every request.

Authorization Header
{ "Authorization": "{{your_access_token}}" }

Pagination

Paginated responses include a paging object with the fields total (total number of records), total_page (total number of pages), and page (current page number). Pass the page query parameter in subsequent requests to retrieve additional pages.

Back to API Documentation