API for Developers
Authentication
How to authenticate to the ssm.ro API and how to check the connection status.
Authentication scheme
The ssm.ro API uses Bearer Token authentication:
Authorization: Bearer {token}Replace {token} with your access token. The token must be sent in the Authorization header on every request.
Example header
GET /api/v1?organizatie=numele-organizatiei HTTP/1.1
Host: www.appssm.ro
Authorization: Bearer 123Checking connection status
Use this endpoint to verify that your token is valid and that you have access to the specified organization.
GET /v1?organizatie={numele-organizatiei}Parameters
| Parameter | In | Type | Required | Description |
|---|---|---|---|---|
organizatie | query | string | Da | Your organization's name in the platform |
Responses
| Code | Description |
|---|---|
200 OK | Valid connection — token and organization are correct |
400 Bad Request | Invalid request |
401 Unauthorized | Invalid or missing token |
500 Server Error | Internal server error |
Example request
GET https://www.appssm.ro/api/v1?organizatie=demo-organization
Authorization: Bearer 123Obtaining a token
Contact the ssm.ro team at suport@ssm.ro or via ssm.ro to request an API access token.