Quick Start Guide

Follow these steps to authenticate and begin using the Sysad API:

  1. Hit endpoint /api/lgn/me
    Include headers (user, pass). Returns a list of Companies.
    curl -X GET "https://sysad-api.epsylon.co.id/api/lgn/me" \
         -H "user: YOUR_USERNAME" \
         -H "pass: YOUR_PASSWORD"
                
  2. Hit endpoint /api/lgn/entity
    Include headers (user, id). Returns a list of Entities for the Company.
    curl -X GET "https://sysad-api.epsylon.co.id/api/lgn/entity" \
         -H "user: YOUR_USERNAME" \
         -H "id: COMPANY_ID"
                
  3. Hit endpoint /api/lgn/token
    Include headers (user, pass, comp, ent, year). Returns the token required for accessing SysAd’s data.
    curl -X GET "https://sysad-api.epsylon.co.id/api/lgn/token" \
         -H "user: YOUR_USERNAME" \
         -H "pass: YOUR_PASSWORD" \
         -H "comp: COMPANY_ID" \
         -H "ent: ENTITY_ID" \
         -H "year: YEAR"
                

Once you have the token, include it in the headers of subsequent API requests to access SysAd’s modules (Media, Finance, Master, etc.).