API for Developers
Reports
Endpoint for retrieving reports from the ssm.ro platform.
Returns a paginated report for the specified organization.
| Parameter | In | Type | Required | Accepted values | Description |
|---|
id | path | string | Yes | draft_signatures | Report type |
organizatie | query | string | Yes | — | Organization name |
page | query | integer | No | — | Page number (defaults to 1) |
| ID | Description |
|---|
draft_signatures | Documents pending signature (draft) |
GET https://www.appssm.ro/api/v1/reports/draft_signatures?organizatie=demo-organization&page=1
Authorization: Bearer 123
{
"count": 150,
"total_pages": 6,
"current_page": 1,
"per": 25,
"list": []
}
| Field | Type | Description |
|---|
count | integer | Total number of records |
total_pages | integer | Total number of pages |
current_page | integer | Current page |
per | integer | Number of records per page |
list | array | List of records for the current page |
| Code | Description |
|---|
200 OK | Report returned successfully |
422 Unprocessable Entity | Invalid parameters |