GET api/AuditOrganizations/{id}
Gets a particular audit organization.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The ID of the audit organization. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
The audit organization with the specified ID, or a 404 response if the audit organization doesn't exist.
AuditOrganization| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
The ID of the record. |
integer |
None. |
| Name |
The name of the organization. |
string |
None. |
| Abbreviation |
The abbreviation for the organization. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Name": "sample string 2",
"Abbreviation": "sample string 3"
}