Manage Service: Get User Services

Descrizione

Questa API restituisce la lista dei servizi di un utente.

Devi usare la nuova chiave manage per la gestione dei servizi.

Per utilizzare questa API è necessario richiedere un'abilitazione specifica.

Retrieve all services

Retrieve all services owned by the calling user

GEThttps://api.io.pagopa.it/api/v1/manage/services
Authorization
Query parameters
Response

Services fetched successfully

Body
valuearray of CmsServiceLifecycle (all of)
paginationCmsPaginationResultSet (object)
Request
const response = await fetch('https://api.io.pagopa.it/api/v1/manage/services', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "value": [
    {
      "id": "text",
      "status": {
        "value": "draft",
        "reason": "text"
      },
      "last_update": "2018-10-13T00:00:00.000Z",
      "metadata": {
        "web_url": "text",
        "app_ios": "text",
        "app_android": "text",
        "tos_url": "text",
        "privacy_url": "text",
        "address": "text",
        "phone": "text",
        "email": "text",
        "pec": "text",
        "cta": "text",
        "token_name": "text",
        "support_url": "text",
        "scope": "LOCAL",
        "topic": {
          "id": 3,
          "name": "Benessere sociale"
        }
      },
      "name": "text",
      "description": "text",
      "organization": {
        "name": "text",
        "fiscal_code": "12345678901",
        "department_name": "text"
      },
      "require_secure_channel": false,
      "authorized_recipients": [
        "SPNDNL80R13C555X"
      ],
      "authorized_cidrs": [
        "text"
      ]
    }
  ],
  "pagination": {
    "offset": 0,
    "limit": 0,
    "count": 0
  }
}

Risorse utili

https://developer.io.italia.it/openapi.html#operation/cmsGetServices

Last updated