ssm.ro Docs
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 123

Checking 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

ParameterInTypeRequiredDescription
organizatiequerystringDaYour organization's name in the platform

Responses

CodeDescription
200 OKValid connection — token and organization are correct
400 Bad RequestInvalid request
401 UnauthorizedInvalid or missing token
500 Server ErrorInternal server error

Example request

GET https://www.appssm.ro/api/v1?organizatie=demo-organization
Authorization: Bearer 123

Obtaining a token

Contact the ssm.ro team at suport@ssm.ro or via ssm.ro to request an API access token.