(Quick Reference)

5 Authorities - Reference Documentation

Version: 2.1

5 Authorities

5.1 List

Service: List of authorities

Description: This web service returns a json list of authorities.

URL:

https://BASE_URL/api/VERSION/authorities

Method: GET

Parameters:

Pagination parameters:

NameDescriptionTypeRequiredPossible values
maxLimits the number of resources requested to return.Integerno 
offsetTells where to start returning records from the entire set of results.Integerno 
orderOrders ascending or descending.Integernoasc,desc
sortOrders the results by the specified field.Stringno 

The max parameter is set to 100 by default.

Filters parameters:

NameDescriptionTypeRequiredExample values
dateCreated_gtFilters by the resource's creation date time and operator greater thanDateno2016-08-15T14:52:48Z
dateCreated_gteFilters by the resource's creation date time and operator greater than or equalDateno 
dateCreated_ltFilters by the resource's creation date time and operator less thanDateno 
dateCreated_lteFilters by the resource's creation date time and operator less than or equalDateno 
lastUpdated_gtFilters by the resource's last-modified date time and operator greater thanDateno 
lastUpdated_gteFilters by the resource's last-modified date time and operator greater than or equalDateno 
lastUpdated_ltFilters by the resource's last-modified date time and operator less thanDateno 
lastUpdated_lteFilters by the resource's last-modified date time and operator less than or equalDateno 
nameWildcard search by the authority's nameStringno 

Dates should be formatted as the ISO-8601 format (YYYY-MM-DDTHH:MM:SSZ)

Success Output

Status: HTTP/1.1 200 OK

{
    "paging": {
        "total": 2,
        "max": 10,
        "offset": 0,
        "previous": null,
        "next": null
    },
    "data": [
      {
        "id": 22,
        "name": "CEO",
        "dateCreated": "2017-01-17T10:30:12Z",
        "lastUpdated": "2017-01-17T12:28:32Z"
       },{
         "id": 45,
         "name": "Delivery Man",
         "dateCreated": "2017-01-20T14:10:13Z",
         "lastUpdated": "2017-01-20T15:15:24Z"
       }
    ]
}

Failure Output

Status: HTTP/1.1 400 Bad Request

{
  "error": "invalid_param",
  "error_description": "The parameters [dateCreated_gta] you provided are not valid for this request."
}
{
    "error": "invalid_datetime_format",
    "error_description": "Invalid datetime filter (not ISO-8601 formatted): [2016/08/29]"
}

Status: HTTP/1.1 500 Internal Server Error
{
    "error": "server_error",
    "error_description": "Oops! Something went wrong..."
}

5.2 Show

Service: Show an authority

Description: This web service return an existing authority object of the specified id in JSON format

URL:

https://BASE_URL/api/VERSION/authorities/{id}

URL with external_id:

https://BASE_URL/api/VERSION/authorities/reference/{id}

Method: GET

Parameters:

NameDescriptionTypeRequiredExample values
idid of the wanted recordLong/StringYes777

The name of authority can be used as an external ID

Success Output

Success case: response.status = 200
{
    "id": 11,
    "name": "CEO",
    "dateCreated": "2016-09-09T08:18:51Z",
    "lastUpdated": "2016-09-09T08:18:51Z"
}

Failure Output

Failure case:response.status = 400
{
    "error": "invalid_param_type",
    "error_description": "The type of parameter id you provided is not valid for this request."
}

Failure case:response.status = 404
{
  "error": "not_found",
  "error_description": "The authority with the id 999 doesn't exist."
}

5.3 Create

Service: Save an authority

Description: This web service is used to add a new authority object to the database

URL:

https://BASE_URL/api/VERSION/authorities

Method: POST

Request content type: application/json

Parameters:

NameDescriptionTypeRequiredExample values
namethe name of the new authorityStringYes 

Success Output

Success case: response.status=201
{
    "id": 11,
    "name": "CEO",
    "dateCreated": "2016-09-09T08:18:51Z",
    "lastUpdated": "2016-09-09T08:18:51Z"
}

Failure Output

Failure case:response.status = 400
{
    "error": "missing_param",
    "error_description": "name parameter is missing"
}
{
  "error": "already_existing",
  "error_description": "Authority is already existing."
}
{
     "error": "save_failed",
     "error_description": "Failed to save instance"
}
Failure case:response.status = 500
{
     "error": "server_error",
     "error_description": "Oops! Something went wrong..."
}

5.4 Update

Service: Update an authority

Description: This web service is used to update an authority object

URL:

https://BASE_URL/api/VERSION/authorities/{id}

URL with external_id:

https://BASE_URL/api/VERSION/authorities/reference/{id}

Method: PUT

Request content type: application/json

Parameters:

NameDescriptionTypeRequiredExample values
idid of the desired record to updateLong/Stringyes777
name Stringyes 

The name of authority can be used as an external ID

Success Output

Success case: response.status = 20
{
    "id": 11,
    "name": "CEO",
    "dateCreated": "2016-09-09T08:18:51Z",
    "lastUpdated": "2016-09-09T08:18:51Z"
}

Failure Output

Failure case:response.status = 400
{
  "error": "missing_param",
  "error_description": "name parameter is missing"
}

{
     "error": "save_failed",
     "error_description": "Failed to save instance"
}

{
  "error": "not_found",
  "error_description": "The authority with the id 999 doesn't exist."
}
Failure case:response.status = 500
{
     "error": "server_error",
     "error_description": "Oops! Something went wrong..."
}

5.5 Delete

Service: Delete an authority

Description: Returns a json response.

URL:

https://BASE_URL/api/VERSION/authorities/{id}

URL with external_id:

https://BASE_URL/api/VERSION/authorities/reference/{id}

Method: DELETE

Parameters:

NameDescriptionTypeRequiredExample values
idThe ID of the desired authorityLong/Stringyes123

The name of authority can be used as an external ID

Success Output

Success case: response.status = 200

{
  "success": "true",
  "success_description": "Instance deleted successfully"
}

Failure Output

Failure case:response.status = 400

{
  "error": "delete_failed",
  "error_description": "Failed to delete instance."
}

Failure case:response.status = 404

{
  "error": "not_found",
  "error_description": "The authority with the id 706 doesn't exist."
}