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

Compare with Current View Page History

Version 1 Next »

The policy API provides functionality that allows a administrator to add, delete or update policies

List policies

Lists all the policies configured in the Aspire

GET /aspire_api/policy

Query String Parameters

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

Response

{
  "policy": [{
    "id": "AAABcID5GBc=",
    "type": "filesystem",
    ...
  },
  {
    "id": "AAABcIueWUc=",
    "type": "filesystem",
    ...
  }],
  "message": "optional response message"
}

Status

Response codeDescription
200Success




Get a single policy

Get information about a single policy configured in Aspire

GET /aspire_api/policy?id=:id

GET /aspire_api/policy/:id

Query String and Path Parameters

NameTypeRequiredDescription
idstringRequiredThe id of the policy to return

Response

{
  "policy": {
    "id": "AAABcID5GBc=",
    "type": "filesystem",
    ...
 },

  "message": "optional response message"
}

Status

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




Add policy(s)

Add one or more policies to Aspire

POST /aspire_api/policy

Request Body Parameters

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

Other parameters passed in the request body will depend on the type of policy being created - those required by Documentum will be different from those required by SharePoint. Some candidates are shown below

NameDescription
domainAn Active Directory/LDAP domain
usernameA username
passwordA password
emailA user email address
APIkeyAn API key
tokenan access token

Examples

Add a single policy

{
  "type": "filesystem"
  "description": "Europe Net Appliance"
  ...
}

Add multiple policys

[{
  "type": "filesystem"
  "description": "Europe Net Appliance"
  ...
},
{
  "type": "sharepoint"
  "description": "SP Online"
  ...
}]

Response

{
  "policy": [{
    "id": "AAABcID5GBc=",
    "type": "filesystem"
    "description": "Europe Net Appliance"
    ...
   },
   {
    "id": "AAABcIueWUc=",
    "type": "sharepoint"
    "description": "SP Online"
    ...
  }],
  "message": "optional response message"
}

Status

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




Update policy(s)

Update one or more policys 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/policy

Request Body Parameters

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

Other parameters passed in the request body will depend on the type of policy being created - see Add policy(s) above

Examples

Update a single policy

{
  "id": "AAABcID5GBc=",
  "type": "filesystem"
  "description": "Europe Net Appliance"
  ...
}

Update multiple policies

[{
  "id": "AAABcID5GBc=",
  "type": "filesystem"
  "description": "Europe Net Appliance"
  ...
},
{
  "id": "AAABcIueWUc=",
  "type": "sharepoint"
  "description": "SP Online"
  ...
}]

Response

{
  "policy": [{
    "id": "AAABcID5GBc=",
    "type": "filesystem"
    "description": "Europe Net Appliance"
    ...
   },
   {
    "id": "AAABcIueWUc=",
    "type": "sharepoint"
    "description": "SP Online"
    ...
  }],
  "message": "optional response message"
}

Status

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




Delete policy(s)

Delete one or more policies from Aspire.

DELETE /aspire_api/policy?id=:id

DELETE /aspire_api/policy/:id

DELETE /aspire_api/policy

Query String, Path and Request Body Parameters

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

Examples

Delete a single policy

{
  "id": "AAABcID5GBc="
}

Delete multiple seeds

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

Delete multiple policies (alternative form)

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

Response

{
  "message": "optional response message"
}

Status

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