Get a system descriptor

get

/admin/systemDescriptors/{id}

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

OK
Body ()
Root Schema : schema
Type: array
Show Source
Nested Schema : SystemDescriptor
Type: object
Show Source
Nested Schema : edk
Type: object
Show Source
Match One Schema
Show Source
Nested Schema : External
Type: object
Show Source
Nested Schema : header-enrichment
Type: object
Show Source
Nested Schema : apis
Type: array
Minimum Number of Items: 1
Describes Adapter capabilities that are supported for a particular API.
Show Source
Nested Schema : items
Type: object
Show Source
Match One Schema
Show Source
Nested Schema : types
Type: array
Minimum Number of Items: 1
Show Source
Nested Schema : items
Type: object
Show Source
Match One Schema
Show Source
Nested Schema : mapping-directions
Type: array
Minimum Number of Items: 1
Show Source
Nested Schema : type-extensibility-support
Type: object
Show Source
Nested Schema : apis
Type: array
Show Source
Nested Schema : Generic-api
Type: object
Show Source
Nested Schema : api-resources
Type: array
Show Source
Nested Schema : Generic-api-resource
Type: object
Show Source
Nested Schema : resources
Type: array
Show Source
Nested Schema : Generic-resource
Type: object
Show Source
Nested Schema : multi-record-methods
Type: array
Show Source
Nested Schema : single-record-methods
Type: array
Show Source
Nested Schema : Http-method
Type: object
Show Source
  • Allowed Values: [ "GET", "PUT", "POST", "PATCH", "DELETE", "HEAD", "OPTIONS" ]
Nested Schema : expected-headers
Type: array
Minimum Number of Items: 1
Show Source
Nested Schema : fixed-headers
Type: object
Additional Properties Allowed
Show Source

400 Response

Bad Request
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

401 Response

Unauthorized
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

403 Response

Forbidden
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

404 Response

Not Found
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source

500 Response

Internal Server Error
Body ()
Root Schema : Error
Type: object
Used when an API throws an Error, typically with a HTTP error response-code (3xx, 4xx, 5xx)
Show Source
Back to Top

Examples

The following example shows how to get a system descriptor by submitting a GET request on the REST resource using cURL.

cURL Command

curl -H 'Authorization: Bearer <Token>' -X GET https://{FABRIC_HOST}/admin/systemDescriptors/{id} -H "Content-Type: application/json" | json_pp

Example of Response Body

The following shows an example of the response body in JSON format.

{
    "target-name": "FA629-Listeners",
    "external": {
        "apis": [
            {
                "api-id": "fa-101",
                "api-version": "v9",
                "api-resources": [
                    {
                        "resources": [
                            {
                                "resource-id": "contacts"
                            },
                            {
                                "resource-id": "contacts_SourceSystemRef"
                            },
                            {
                                "resource-id": "contacts_ContactPoint"
                            },
                            {
                                "resource-id": "contacts_SourceSystemRef_Id"
                            },
                            {
                                "resource-id": "contacts_ContactPoint_Id"
                            }
                        ]
                    }
                ]
            }
        ]
    },
    "id": "fa629-listenersgsh2h",
    "system": "fusion",
    "domain": "fusion",
    "type": "external"
}
Back to Top