ssm.ro Docs
API for Developers

Reports

Endpoint for retrieving reports from the ssm.ro platform.

Retrieve report

GET /v1/reports/{id}

Returns a paginated report for the specified organization.

Parameters

ParameterInTypeRequiredAccepted valuesDescription
idpathstringYesdraft_signaturesReport type
organizatiequerystringYesOrganization name
pagequeryintegerNoPage number (defaults to 1)

Available report types

IDDescription
draft_signaturesDocuments pending signature (draft)

Example request

GET https://www.appssm.ro/api/v1/reports/draft_signatures?organizatie=demo-organization&page=1
Authorization: Bearer 123

Response 200 OK

{
  "count": 150,
  "total_pages": 6,
  "current_page": 1,
  "per": 25,
  "list": []
}
FieldTypeDescription
countintegerTotal number of records
total_pagesintegerTotal number of pages
current_pageintegerCurrent page
perintegerNumber of records per page
listarrayList of records for the current page

Responses

CodeDescription
200 OKReport returned successfully
422 Unprocessable EntityInvalid parameters