Skip to main content

Introduction

SINIAE

This document explains how to use the ShipTicket API, which allows you to create, list, update, and delete users.

The API follows REST principles and uses JSON for request and response bodies.


Getting Started

Before using this API, make sure you have:

  • An active API key
  • Internet access
  • A tool like curl, Postman, or an HTTP client in your app

Base URL

All API requests are made to:

https://api-dev.siniae.telanusa.id/v1

Authentication

Authentication is done using a Bearer Token.

Include the following header in every request:

Authorization: Bearer YOUR_API_KEY

Try It With cURL

curl -X POST https://api-dev.siniae.telanusa.id/v1/users   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"name":"John Doe","email":"john@example.com"}'