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

Compare with Current View Page History

« Previous Version 4 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
descriptionstringOptionalFilter returned services to only those whose description matches the given expression

Response

{
  "service": [{
    "id": "AAABcID5GBc=",
    "description": "Group expansion service",
    ...
  },
  {
    "id": "AAABcIueWUc=",
    "description": "LDAP cache service",
    ...
  }],
  "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

Path Parameters

NameTypeRequiredDescription
idstringRequiredThe id of the service to return

Response

{
  "service": {
    "id": "AAABcID5GBc=",
    "description": "Group expansion service",
    ...
  },
  "message": "optional response message"
}

Status

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




Add service

Adds a services to Aspire

POST /aspire_api/connector

Request Body Parameters

NameTypeRequiredDescription
coordsstringRequiredThe maven coordinates of bundle to use for this service
descriptionstringOptionalAn optional description of the service

Examples

Add a single service

{
  "coords": "com.accenture.aspire:app-ge-manager",
  "description": "Group expansion service"
  ...
}

Response

{
  "service": {
    "id": "AAABcID5GBc=",
    "description": "Group expansion service"
    ...
  },
  "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
descriptionstringOptionalAn optional description of the service

Examples

Update a single service

{
  "id": "AAABcID5GBc=",
  "description": "Group expansion service",
  ...
}

Response

{
  "service": {
    "id": "AAABcID5GBc=",
    "description": "Group expansion service",
    ...
   },
  "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

DELETE /aspire_api/service

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




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

QueryString, 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