(Click to open topic with navigation)
This section describes the services available through Moab Web Services for interacting with the Organization object in Moab Accounting Manager. It contains the URLs, request bodies, and responses delivered to and from MWS as an intermediary for MAM.
The Fields: Organizations reference contains the type and description of the default fields for the Organization object.
Supported methods
Resource | GET | PUT | POST | DELETE |
---|---|---|---|---|
/rest/accounting/organizations | Get All Organizations | -- | -- | -- |
/rest/accounting/organizations/<id> | Get Single Organization | -- | -- | -- |
This topic contains these sections:
The HTTP GET method is used to retrieve Organizations information.
Quick reference
GET http://localhost:8080/mws/rest/accounting/organizations?api-version=3 GET http://localhost:8080/mws/rest/accounting/organizations/<id>?api-version=3
URLs and parameters
GET http://localhost:8080/mws/rest/accounting/organizations?api-version=3&proxy-user=<user>[&query=<query_conditions>][&fields=<fields_to_display>[&sort=<fields_to_sort>]|&show-all=(true|false)]
Parameter | Required | Type | Valid values | Description | Example |
---|---|---|---|---|---|
proxy-user | Yes | String | -- | Perform action as defined MAM user. | proxy-user=amy |
query | No | JSON | -- |
Results are restricted to those having the specified field values. The query parameter does not support the full Mongo query syntax. Only querying for a simple, non-nested JSON object is allowed. |
query={"deleted":false} |
fields | No | String | -- | Comma-separated list of field names to display. | fields=id |
sort | No | JSON | -- | Sort the results. Use 1 for ascending and -1 for descending. Should be used in conjunction with the fields parameter. | sort={"requestedId":-1} |
show-all | No | Boolean | true or false | true shows all fields including metadata and hidden fields. Default is false. | show-all=true |
See Global URL Parameters for available URL parameters.
Sample response
GET http://localhost:8080/mws/rest/accounting/organizations?api-version=3&proxy-user=moab&fields=id,description&sort={"id":1}&pretty=true
------------------------------------
{
"totalCount": 2,
"resultCount": 2,
"results": [
{
"description": "Arts College",
"id": "arts"
},
{
"description": "Sciences College",
"id": "sciences"
}
]
}
URLs and parameters
GET http://localhost:8080/mws/rest/accounting/organizations/<id>?api-version=3&proxy-user=<user>[&fields=<fields_to_display>|&show-all=(true|false)]
Parameter | Required | Type | Valid values | Description | Example |
---|---|---|---|---|---|
id | Yes | String | -- | The unique identifier of the object. | -- |
fields | No | String | -- | Comma-separated list of field names to display. | fields=id |
show-all | No | Boolean | true or false | true shows all fields including metadata and hidden fields. Default is false. | show-all=true |
See Global URL Parameters for available URL parameters.
Sample response
GET http://localhost:8080/mws/rest/accounting/organizations/sciences?api-version=3&proxy-user=moab&pretty=true
------------------------------------
{
"description": "Sciences College",
"id": "sciences"
}
Related Topics