???? API
??? ?? ?????? ?????? ????? ???? ????? API ???????.
????????
???? ???? ??????? ????? ??? Authorization:
Authorization: Bearer YOUR_API_TOKEN
????? ?????????
???? ?????????? ???? ??? ??????:
{
"success": true,
"data": { ... },
"message": "Description of the result"
}
???????? ?????:
{
"success": false,
"error": "Error description",
"code": 400
}
??????????
??? ???? ??????????
GET /api/saas/tenants
?????????:
| ??????? | ????? | ????? | ????? |
|---|---|---|---|
page | integer | ?? | ??? ?????? ??????? |
per_page | integer | ?? | ??????? ??? ???? (???????: 25? ????: 100) |
status | string | ?? | ??????? ??? ??????: active, inactive, trial |
???? ??? ?????????:
{
"success": true,
"data": {
"tenants": [
{
"id": 1,
"company_name": "Acme Corp",
"domain": "acme.yoursite.com",
"plan": "Professional",
"status": "active",
"created_at": "2024-01-15T10:30:00Z"
}
],
"total": 42,
"page": 1,
"per_page": 25
}
}
?????? ??? ?????? ????
GET /api/saas/tenants/{id}
???? ??? ?????????:
{
"success": true,
"data": {
"id": 1,
"company_name": "Acme Corp",
"domain": "acme.yoursite.com",
"plan_id": 2,
"plan_name": "Professional",
"status": "active",
"created_at": "2024-01-15T10:30:00Z",
"expires_at": "2024-02-15T10:30:00Z",
"usage": {
"customers": { "used": 24, "limit": 500 },
"invoices": { "used": 89, "limit": 1000 },
"projects": { "used": 5, "limit": 50 },
"staff": { "used": 3, "limit": 10 }
}
}
}
????? ??????
POST /api/saas/tenants
??????? ????:
| ??????? | ????? | ????? | ????? |
|---|---|---|---|
company_name | string | ??? | ??? ?????? |
email | string | ??? | ?????? ?????????? ??????? ??????? |
first_name | string | ??? | ????? ????? ??????? |
last_name | string | ??? | ??? ??????? ??????? |
plan_id | integer | ??? | ????? ?????? ??????? |
subdomain | string | ??? | ?????? ??????/??????? ??????? |
password | string | ?? | ???? ???? ?????? (????? ???????? ??? ?? ?????) |
????:
curl -X POST https://yoursite.com/api/saas/tenants \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"company_name": "Acme Corp",
"email": "[email protected]",
"first_name": "John",
"last_name": "Doe",
"plan_id": 2,
"subdomain": "acme"
}'
????? ??????
PUT /api/saas/tenants/{id}
??????? ????:
| ??????? | ????? | ????? | ????? |
|---|---|---|---|
company_name | string | ?? | ??? ?????? ?????? |
plan_id | integer | ?? | ????? ??????? ?????? ??????? |
status | string | ?? | active ?? inactive |
??? ??????
DELETE /api/saas/tenants/{id}
خطر
??? ???? ???????? ????? ??????? ???????? ??? ?? ??? ????? ???????. ?? ???? ??????? ?? ??? ???????.
?????
??? ???? ?????
GET /api/saas/plans
???? ??? ?????????:
{
"success": true,
"data": {
"plans": [
{
"id": 1,
"name": "Starter",
"price_monthly": 10.00,
"price_yearly": 100.00,
"billing_cycle": "monthly",
"is_popular": false,
"trial_enabled": true,
"limits": {
"customers": 50,
"invoices": 100,
"projects": 5,
"staff": 2
}
}
]
}
}
?????? ??? ??? ?????
GET /api/saas/plans/{id}
????? ???
POST /api/saas/plans
????? ???
PUT /api/saas/plans/{id}
??? ???
DELETE /api/saas/plans/{id}
??????????
?????? ??? ?????? ????????
GET /api/saas/tenants/{id}/subscription
???? ??? ?????????:
{
"success": true,
"data": {
"tenant_id": 1,
"plan_id": 2,
"plan_name": "Professional",
"status": "active",
"started_at": "2024-01-15T10:30:00Z",
"expires_at": "2024-02-15T10:30:00Z",
"next_invoice_at": "2024-02-15T10:30:00Z",
"billing_cycle": "monthly"
}
}
????? ????????
PUT /api/saas/tenants/{id}/subscription
??????? ????:
| ??????? | ????? | ????? | ????? |
|---|---|---|---|
plan_id | integer | ?? | ???? ????? ??????? |
expires_at | datetime | ?? | ????? ?????? ???????? ?????? |
?????????
?????? ??? ??????? ????????
GET /api/saas/tenants/{id}/usage
???? ??? ?????????:
{
"success": true,
"data": {
"customers": { "used": 24, "limit": 500, "percentage": 4.8 },
"invoices": { "used": 89, "limit": 1000, "percentage": 8.9 },
"projects": { "used": 5, "limit": 50, "percentage": 10.0 },
"staff": { "used": 3, "limit": 10, "percentage": 30.0 },
"estimates": { "used": 12, "limit": 200, "percentage": 6.0 },
"contracts": { "used": 2, "limit": 50, "percentage": 4.0 },
"tasks": { "used": 67, "limit": 500, "percentage": 13.4 }
}
}
???? ???? HTTP
| ????? | ?????? |
|---|---|
200 | ???? |
201 | ?? ??????? ????? |
400 | ??? ???? - ???? ?? ???????? |
401 | ??? ???? - ??? API ??? ???? ?? ????? |
404 | ??? ????? - ?????? ??? ????? |
422 | ??? ?? ?????? - ??? ???? ?? ???? ??? ???? |
429 | ????? ?? ?????? - ???? ?????? |
500 | ??? ?? ?????? - ???? ?????? ??? ????? |