You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

Page in development

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

The service API provides functionality that allows a administrator to perform actions such as adding and configuring services

List services

Lists all the services configured in the Aspire

GET /aspire_api/service

Query String Parameters

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

Response

{
  "service": [{
    "id": "AAABcID5GBc=",
    "type": "filesystem",
    "description": "NetApp service",
    ...
  },
  {
    "id": "AAABcIueWUc=",
    "type": "shareoint-online",
    "description": "SharePoint Online",
    ...
  }],
  "message": "optional response message"
}

Status

Response codeDescription
200Success




Get a single service

Get information about a single service configured in Aspire

GET /aspire_api/service?id=:id

GET /aspire_api/service/:id

Query String and Path Parameters

NameTypeRequiredDescription
idstringRequiredThe id of the service to return

Response

{
  "service": {
    "id": "AAABcID5GBc=",
    "type": "filesystem",
    "description": "NetApp service",
    ...
  },
  "message": "optional response message"
}

Status

Response codeDescription
200Success
404The given service id was not found




Add service(s)

Add one or more services to Aspire

POST /aspire_api/connector

Request Body Parameters

NameTypeRequiredDescription
typestringRequiredThe type of service to use for this service (may be omitted if service is specified)
descriptionstringOptionalAn optional description of the service

Examples

Add a single service

{
  "type": "filesystem",
  "description": "NetApp"
  ...
}

Add multiple services

[{
  "type": "filesystem",
  "description": "NetApp"
  ...
},
{
  "type": "sharepoint",
  "description": "SharePoint Online"
  ...
}]

Response

{
  "connector": [{
    "id": "AAABcID5GBc=",
    "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 service

Update a service 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

PUT /aspire_api/service

Request Body Parameters

NameTypeRequiredDescription
idstringRequiredThe identifier of the service to update
typestringRequiredThe type of service to use for this service (may be omitted if service is specified)
descriptionstringOptionalAn optional description of the service

Examples

Update a single service

{
  "id": "AAABcID5GBc=",
  "service": "c:\\testdata\\2500",
  "type": "filesystem"
}

Response

{
  "service": {
    "id": "AAABcID5GBc=",
    "Description": "Net App",
    "type": "filesystem",
    "status": "N"
   },
  "message": "optional response message"
}

Status

Response codeDescription
201Created
404Not found - a given service identifier was not found
406Not acceptable - there was an issue validating the input




Delete service(s)

Delete one or more services from Aspire.

DELETE /aspire_api/service?id=:id

DELETE /aspire_api/service/:id

DELETE /aspire_api/service

Query String, Path and Request Body Parameters

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

Examples

Delete a single service

{
  "id": "AAABcID5GBc="
}

Delete multiple services

[{
  "id": "AAABcID5GBc="
},
{
  "id": "AAABcIueWUc="
}]

Delete multiple services (alternative form)

{
  "id": ["AAABcID5GBc=", "AAABcIueWUc="]
}

Response

{
  "message": "optional response message"
}

Status

Response codeDescription
200Success
404Not found - a given service identifier was not found
406Not acceptable - there was an issue validating the input






  • No labels