Interactive guide through the SAPI integration process.
Stage 1: Client Registration
POST /sapi/auth/register
Content-Type: application/json
{
"client_name": "My ERP System",
"contact_email": "dev@example.com"
}
// Response (201 Created)
{
"client_id": "client_xxxxxxxx",
"client_secret": "cs_xxxxxxxx", // Save securely!
"status": "pending_approval",
"message": "Awaiting AP admin approval"
}