Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Warning
titlePage in development

This page is in development and as such, its contents may be incorrect

The connector The connectors API provides functionality that allows a administrator or operator to perform actions such as adding and configuring connectors.

toc
Easy Heading Free
navigationTitleOn this Page
navigationExpandOptionexpand-all-by-default

Section
List

Get all connectors

Lists all the connectors configured in the Aspire, this endpoint need the at least the OPERATOR role to be executed. 

Panel
borderColorblack
bgColor#fafafb
GET /aspire/_api/connector

Query String Parameters

NameTypeRequiredDescription
typestringOptionalFilter returned connectors to only those with the given type
descriptionstringOptionalFilter returned connectors to only those whose description matches the given expression
connectors

Pagination query string parameters

Sorting query string parameter

Section

Get all connectors, filtered

Lists connectors configured in the Aspire, filtered by a specified criteria, this endpoint need the at least the OPERATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

POST /aspire/_api/connectors/getAll

Pagination query string parameters

Sorting query string parameters

Filters: The connector filter definition here

Response

Code Block
languagejs
themeRDark
{
    "count": {
        "totalItems": 2
    },
    "connector": [
        {
            "id": "948a9d99-5b71-4023-976e-14dcdc82f231",
            "artifact": "AAABcID5GBc=com.accenture.aspire:aspire-ldap-cache-source",
            "type": "filesystemldap",
            "description": "LDAP",
            "properties": {
                "enableFetcher": "true",
                "enableFetchUrl": "true",
                "infoCacheSize"NetApp: connector"100",
                ....
            },
            "checksum": "2f29393b0fb89ab1d70c0df85c698214def4952467488c3df03d37baeab5d39e"
        },
        {
            "id": "16e901a5-75c7-4969-90d2-70ad299916f3",
            "artifact": "AAABcIueWUc=com.accenture.aspire:aspire-filesystem-source",
            "type": "shareoint-onlinefilesystem",
            "description": "SharePoint Online",
"FS_Demo",
            "properties": {
                "enableFetcher": "true",
                "enableFetchUrl": "true",
                "infoCacheSize": "100",
                 ....
            }],
            "messagechecksum": "optional response message""0d5130e07c1e6123bcfa6c6e81850693a2e2e3d03d896c7725dd3cb536c86b62"
        }
    ]
}

Status

Response codeDescription200Success

: 200




The given connector id was not found

: 200, 404

Section

Get a single connector

Get information about a single connector configured in Aspire, this endpoint need the at least the OPERATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

GET /aspire_api/connector?id=:idGET /aspire_api/connectorconnectors/:id


Query String and Path Parameters

NameTypeRequiredDescription
idstringRequiredThe id of the connector to return


Response

Code Block
languagejs
themeRDark
{
    "connector": {
        "id": "AAABcID5GBc=948a9d99-5b71-4023-976e-14dcdc82f231",
        "artifact": "com.accenture.aspire:aspire-ldap-cache-source",
        "type": "filesystemldap",
        "description": "NetApp connector",
    ...
 "LDAP",
        "properties": {
            "enableFetcher": "true",
            "enableFetchUrl": "true",
            "infoCacheSize": "100",
			.............
        },
        "messagechecksum": "optional2f29393b0fb89ab1d70c0df85c698214def4952467488c3df03d37baeab5d39e"
   response message"}
}

Status

Response codeDescription
200Success
404




Section

Add connector(s)

Add one or more connectors to Aspire, this endpoint need the at least the ADMINISTRATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb
POST /aspire/_api/connectorconnectors


Request Body Parameters

NameTypeRequiredDescription
typestringRequiredThe type of connector to use for this connector (may be omitted if connector is specified)
descriptionstringOptionalRequiredAn optional The description of the connector

Examples

artifactstringRequiredThe name of the artifact
propertiesobjectRequiredConnector properties


ExampleAdd a single connector

Code Block
languagejs
themeRDark
POST /aspire/_api/connectors
[
    {
        "type": "filesystem",
        "description": "FS Demo Test 1",
        "artifact": "com.accenture.aspire:aspire-filesystem-source",
        "properties": {
            "enableFetcher": "true",
            "enableFetchUrl": "true",
            "infoCacheSize": "NetApp100",
            "deleteCheckAfterErrors": "NEVER",
			.....
}

Add multiple connectors

Code Block
languagejs
[{
        }
    },
    {
        "type": "filesystem",
        "description": "NetApp"
  ...
},
{
  "typeFS Demo Test 2",
        "artifact": "com.accenture.aspire:aspire-filesystem-source",
        "properties": {
            "enableFetcher": "sharepointtrue",
            "descriptionenableFetchUrl": "SharePoint Online"
  ...
}"true",
            "infoCacheSize": "100",
            "deleteCheckAfterErrors": "NEVER",
			.................
        }
    }
]


Response

Code Block
languagejs
themeRDark
{
    "connector": [
        {
            "id": "8e971436-b78a-4c6d-bafb-e16f1433c6f6",
            "artifact": "AAABcID5GBc=com.accenture.aspire:aspire-filesystem-source",
            "type": "filesystem",
            "description": "NetApp"
    ...
  },
  {
    "type": "sharepoint",
    "description": "SharePoint Online"
    ...
  }],
  "message": "optional response message"
}

Status

Response codeDescription
201Created
406Not acceptable - there was an issue validating the input

>>>>>>>>>>> Update below <<<<<<<<<<<<<<<<<<<<

FS_Demo_Test_1",
            "properties": {
                "enableFetcher": "true",
                "enableFetchUrl": "true",
                "infoCacheSize": "100",
				..........
            },
            "checksum": "c27b11a3996c4dc6f3a03b79397679fa68256241a865faeef7f06271b558bb46"
        },
        {
            "id": "9ad25f3b-ae34-4cff-85e1-6884e5b8f070",
            "artifact": "com.accenture.aspire:aspire-filesystem-source",
            "type": "filesystem",
            "description": "FS_Demo_Test_2",
            "properties": {
                "enableFetcher": "true",
                "enableFetchUrl": "true",
                "infoCacheSize": "100",
				.............
            },
            "checksum": "19a1ce2e3bb658c4831bbc706a13393874822bf03e1bac31a4f197770410afbb"
        }
    ]
}

See Response Body for details regarding the response body returned where multiple items are affected with some (or all) returning errors

Status: 201, 406




Section

Update connector(s)

Update one or more Updates connectors in Aspire. Updates will be treated as partial updates rather than overwrites. If a field is not present in the input, any previous value will remain after the update. If you wish to "delete" a value, pass a value of null, this endpoint need the ADMINISTRATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

PUT /aspire/_api

/connector

/connectors/:id

PUT /aspire/_api/connectors


Path Request Body Parameters

NameTypeRequiredDescription
idstringRequiredThe identifier of the connector to updateconnector


Body Parameters

NameTypeRequiredDescription
id
stringRequiredThe url/path indicating the content to crawl
typestringRequiredThe type of connector to use for this connector (may be omitted if connector is specified)
connectorstringRequiredThe identifier of the connector configuration to use for this connector (may be omitted if type is specified)to update
descriptionstringOptionalxAn optional The description of the connector
credentialpropertiesstringobjectOptionalAn optional id of the credential to use for this connector
policystringOptionalAn optional list of the policy identifiers to use for this connector
workflowstringOptionalAn optional list of the workflow identifiers to use for this connector

Examples

xConnector properties

x - at least one field must be present


Example - update one
Update a single connector

Code Block
languagethemejsRDark
PUT /aspire/_api/connectors/600f70ef-7a90-4364-bdb9-7a9b5f81f6fe
{
    {
  "id": "AAABcID5GBc=600f70ef-7a90-4364-bdb9-7a9b5f81f6fe",
    "connectordescription": "c:\\testdata\\2500NetApp - First- UPDATE",
    "type"properties": {
      "enableFetcher": "filesystemtrue",
}      .....
    }
}


Example - update more Update multiple connectors

Code Block
languagejs
themeRDark
PUT /aspire/_api/connectors
{
  "AAABcID5GBc=": {
  [{
  "id": "AAABcID5GBc=",
    "connectordescription": "c:\\testdata\\2500Net App",
    "typeproperties": "filesystem"
},
{
      "idenableFetcher": "AAABcIueWUc="true",
      .....
    }
  },
  "connectorAAABcID5GBd=": "c:\\testdata\\250000",{
    "connectorid": "connector_1AAABcID5GBd=",
    "description": "250,000Sharepoint filesonline",
    "credentialproperties": "cred_1",
{
      "policyenableFetcher": "policy_1true",
      .....
    }
 "workflow": ["workflow_1","workflow_99"] }
}]


Response

Code Block
languagejs
themeRDark
{
  "connector": [{
    "updated":true,"id": "AAABcID5GBc="},
    "connector": "c:\\testdata\\2500",
    "type": "filesystem",
    "status": "N"
   },
  {"updated":true,"id":"AAABcID5GBd="}]}

Status: 200, 404, 406


Section

Update connectors, filtered

Update connectors configured in the Aspire, filtered by a specified criteria, this endpoint need the ADMINISTRATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

PUT /aspire/_api/connectors/updateAll

Filters: The connector filter definition here

Update body parameter:

Code Block
themeRDark
{
  "update" : {
    "
id
description" : "
AAABcIueWUc=
DESCRIPTION"
,

    "
type
properties": 
"filesystem",
{
      "
connector
enableFetcher": "
c:\\testdata\\250000
true",
     
"connector": "connector_1",
 .....
    
"description": "250,000 files", "credential
}
  }
}


Response

Code Block
languagejs
themeRDark
{
  "message": "
cred_1", "policy": "policy_1", "workflow": ["workflow_1","workflow_99"] "status": "N" }],
update result response message"
}

Status: 200, 406





Not acceptable - there was an issue validating the input
Section

Delete connector(s)

Delete one or more connectors from Aspire, this endpoint need the ADMINISTRATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

DELETE /aspire/_api/connectors/:id

DELETE /aspire/_api/connectors

POST /aspire/_api/connectors/delete


Path Parameters and Query parameters

NameTypeRequiredDescription
idstringRequiredThe identifier(s) of the connector(s) to delete


Body Parameter

NameTypeRequiredDescription
idsstringRequiredThe identifier(s) of the connector(s) to delete


Examples

Code Block
languagejs
themeRDark
DELETE /aspire/_api/connectors/AAABcID5GBc

DELETE /aspire/_api/connectors?id=AAABcID5GBc&id=AAABcID5GBd

POST /aspire/_api/connectors/delete
{
  "ids":["AAABcID5GBc","AAABcID5GBd"]
}


Response

Code Block
languagejs
themeRDark
{
  "message": "delete result response message"
}

Status: 200, 404, 406


Section

Delete multiple connectors, filtered

Delete multiple connectors from Aspire, filtered by a specified criteria, this endpoint need the ADMINISTRATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

POST /aspire/_api/connectors/deleteAll

Filters: The connector filter definition here

Response

Code Block
languagejs
themeRDark
{
  "message": "
optional
delete result response message"
}

Status

Response codeDescription
201Created
404Not found - a given connector identifier was not found
406

: 200




Section
Delete

Export connector(s)

Delete Export one or more connectors connector from Aspire, this endpoint needs at least the OPERATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

DELETE GET /aspire/_api/connector?id=:id/connectors/export

GET DELETE /aspire/_api/connectors/connectorexport/:id

DELETE POST /aspire/_api/connector/connectors/exportAll

Info

Every configuration item has the option to export from the UI, using the single menu or by the bulk actions:

Image AddedImage Added

Note

Something important that you need to know is that when you export a config item that depends on another, the export will contain also all the dependencies.

Note

Take into consideration that components with resources loaded into elastic, will be exported, but the resource itself will not, so you will need to reupload the resource and go and select your resource in the component again.


Path Parameters and Query parametersQuery String, Path and Request Body Parameters

NameTypeRequiredDescription
idstringRequiredThe identifier(s) of the connector(s) to delete

Examples

export


Body Parameter

NameTypeRequiredDescription
idsstringRequiredThe identifier(s) of the connector(s) to export


ExamplesDelete a single connector

Code Block
languagejs
themeRDark
GET /aspire/_api/connectors/export/AAABcID5GBc

DELETE /aspire/_api/connectors/export?id=AAABcID5GBc&id=AAABcID5GBd

POST /aspire/_api/connectors/export
{
  "idids": ["AAABcID5GBc=","AAABcID5GBd"]
}


Delete multiple connectorsResponse

Code Block
languagejs
themeRDark
{
  "export": {
    "connectors": {
      "connector": [
        {
          "id": "AAABcID5GBc="
},
{
  "id": "AAABcIueWUc="
}]
Delete multiple connectors (alternative form)
"<connector_id>",
          "artifact": "com.accenture.aspire:aspire-rest-source",
          "type": "rest-api",
          "description": "RestConnector",
          "properties": {
            "debug": false,
            "wDebug": false,
            ...
          },
          "checksum": "82a70c88cbfa46dfd79d6430bfesdf5646c13089604fb609831f16f"
        },
		...
      ]
    }
  }
}

Status: 200, 404, 406


Section

Export multiple connectors, filtered

Export multiple connectors from Aspire, filtered by a specified criteria, this endpoint needs at least the OPERATOR role to be executed.

Panel
borderColorblack
bgColor#fafafb

POST /aspire/_api/connectors/exportAll

Filters: The connection filter definition here

Response

Code Block
languagejs
themeRDark
{
  "export": {
    "connectors": {
      "connector": [
        {
          "id
": ["AAABcID5GBc=", "AAABcIueWUc="] }
": "<connector_id>",
          "artifact": "com.accenture.aspire:aspire-rest-source",
          "type": "rest-api",
          "description": "RestConnector",
          "properties": {
            "debug": false,
            "wDebug": false,
            ...
          },
          "checksum": "82a70c88cbfa46dfd79d6430bfesdf5646c13089604fb609831f16f"
        },
		...
      ]
    }
  }
}

Status: 200




Section

Import

The import usage can be found here





Not acceptable - there was an issue validating the input
Section

Filters
Anchor
FiltersAnchor
FiltersAnchor

Connector filter:Response

Code Block
languagejs
themeRDark
{  
  "filter" : {
    "ids" : ["ID1", "ID2", "ID3", ...],
    "type" : "TYPE",
    "messagedescription" : "optional response message"
}

Status

Response codeDescription
200Success
404Not found - a given connector identifier was not found
406
"DESCRIPTION",
	"artifact" : "ARTIFACT"
  }
}