tech module
November 18, 2025 ยท View on GitHub
tech module
technical functions of the API, also used in dataspaces
GET /capabilities -> capabilitiesResponse
data spaces capabilities check
data space compliancy
data space compliancy
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
date_time | query | string | Date time for which the information is requested. If provided the result becomes final and therefore MUST be cacheable. |
Responses
| Code | Content type | Type | Description |
|---|---|---|---|
| 200 | application/json | capabilitiesResponse | the capabilities of an API, see also https://dev.ishare.eu/ishare-satellite-role/capabilities |
POST /connect/token accessTokenRequest -> accessTokenResponse
Request an access token
request an JWT token to use in a dataspace context
request an JWT token to use in a dataspace context
Request Body
{
"grant_type": "string",
"scope": "string",
"client_id": "string",
"client_assertion_type": "string",
"client_assertion": "string"
}
Responses
| Code | Content type | Type | Description |
|---|---|---|---|
| 200 | application/json | accessTokenResponse | in case of a valid request, a accessTokenResponse |
GET /health
is the API up and running?
This is a healthcheck ENDPOINT
This is a healthcheck ENDPOINT
Responses
| Code | Content type | Type | Description |
|---|
POST /oauth/token
Token Endpoint
This endpoint is used to obtain an access token and optionally an ID token through different OAuth 2.0 grant types, including Client Credentials Flow. Whenever the mTLS flow is taken, the properties will be ignored, and the access token will be generated based on the credentials in the certificate (O or CN).
This endpoint is used to obtain an access token and optionally an ID token through different OAuth 2.0 grant types, including Client Credentials Flow. Whenever the mTLS flow is taken, the properties will be ignored, and the access token will be generated based on the credentials in the certificate (O or CN).
Request Body
Responses
| Code | Content type | Type | Description |
|---|