Get Smart Card Printer Configuration

To get the smart card printer configuration, the client must send a GET request to: /aims/rs/scim/v2/Printer.

The possible HTTP status codes returned are:

  • 200: OK

  • 400: Bad Request

  • 401: Unauthorized

  • 403: Forbidden

Example request:

Copy
GET /aims/rs/scim/v2/Printer
Content-Type: application/scim+json

Example response:

Copy
HTTP/1.1 200

{
    "schemas": [
        "urn:ietf:params:scim:api:messages:2.0:ListResponse"
    ],
    "totalResults": 1,
    "resources": [
        {
            "schemas": [
                "urn:ietf:params:scim:api:messages:2.0:ListResponse"
            ],
            "type": 0,
            "parameters": [
                {
                    "id": "Url",
                    "value": "https://hostname",
                    "type": "string"
                },
                {
                    "id": "Port",
                    "value": "9443",
                    "type": "string"
                },
                {
                    "id": "UseServerHostedTemplates",
                    "value": "NO",
                    "type": "string"
                }
            ]
        }
    ]
}