TAG LINE
TAG LINE
SMALL TITLE
This entity represents the container that holds exchange rates for a particular Currency.
identity READ-ONLY | "identity": 21 Type: Number This is the unique numeric identifier for the CurrencyExchange |
ownerId READ-ONLY | "ownerId": 11 Type: Number Unique identifier for the associated Owner object. |
ownerName READ-ONLY | "ownerName": "Sample Name" Type: String The name of the object associated with the ownerId property. |
name | "name": "Canadian Rates" Type: String User defined name for the currency exchange. |
effective | "effective": "2021-04-26T15:25:27.587Z" Type: Date When do these exchange rates come into effect. Date and time values are specified in the ISO 8601 format. |
created READ-ONLY | "created": "2021-04-26T15:25:27.587Z" Type: Date This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format. |
createdByUserId | "createdByUserId": 8 Type: Number Unique identifier for the associated User object. |
createdByUserName | "createdByUserName": "Sample Name" Type: String The name of the object associated with the createdByUserId property. |
The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.
PATCH operations can be used as a standard API call. Below you will find the child objects that can be updated as part of PATCH operations for the CurrencyExchange object.
Standard PATCH objects:
DataFlow PATCH objects:
DELETE | Currency/Exchange/{id} |
Delete an instance of the CurrencyExchange object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the CurrencyExchange object. |
Delete an instance of the CurrencyExchange object. DELETE Currency/Exchange/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "delete", "results": { "totalCount": 4, "items": [ { "identity": 1, "action": "deleted", "dtoTypeKey": "currencyExchange" }, { "lhsId": 2, "rhsId": 2, "action": "detached", "dtoTypeKey": "sampleObjectConnector" }, { "foreignKeyIdentity": 2, "action": "deleted", "dtoTypeKey": "sampleObject" } ] } } |
GET | Currency/Exchange/ |
Retrieve all of the CurrencyExchange objects. | |
Retrieve all of the CurrencyExchange objects. GET Currency/Exchange/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "ownerId": 3, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 6, "createdByUserName": "Sample Text Data" } ] } |
GET | Currency/Exchange/Paged |
Retrieve all of the CurrencyExchange objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the CurrencyExchange objects in a paged fashion. GET Currency/Exchange/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 2, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 11, "createdByUserName": "Sample Text Data" } ] } } |
GET | Currency/Exchange/Paged/Detail |
Retrieve all of the CurrencyExchange objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
Retrieve all of the CurrencyExchange objects in a paged fashion with all object details. GET Currency/Exchange/Paged/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 9, "createdByUserName": "Sample Text Data", "details": { "identity": 52, "currencyId": 18, "currencyName": "Sample Text Data", "currencyExchangeId": 51, "currencyExchangeName": "Sample Text Data", "rate": 71.4, "created": "2021-04-26T15:25:27.587Z" } } ] } } |
GET | Currency/Exchange/{id} |
Retrieve an instance of the CurrencyExchange object by its ID. | |
{id} | Unique identifier for the CurrencyExchange object. |
Retrieve an instance of the CurrencyExchange object by its ID. GET Currency/Exchange/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 7, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 0, "createdByUserName": "Sample Text Data" } } |
GET | Currency/Exchange/{id}/Detail |
Retrieve deep detail of the CurrencyExchange object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system. | |
{id} | Unique identifier for the CurrencyExchange object. |
Retrieve deep detail of the CurrencyExchange object by its ID. GET Currency/Exchange/{id}/Detail HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "ownerId": 2, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 5, "createdByUserName": "Sample Text Data", "details": { "identity": 52, "currencyId": 18, "currencyName": "Sample Text Data", "currencyExchangeId": 51, "currencyExchangeName": "Sample Text Data", "rate": 71.4, "created": "2021-04-26T15:25:27.587Z" } } } |
PATCH | Currency/Exchange/{id} |
Update or Add the CurrencyExchange object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array. | |
{id} | Unique identifier for the CurrencyExchange object. |
Update or Add the CurrencyExchange object and optionally make changes to any child objects. PATCH Currency/Exchange/{id} { "details": {}, "currencyExchanges": { "items": [ { "patchType": "create", "patchClientId": 1, "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "createdByUserId": 17 } ] } } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "patch", "results": { "totalCount": 1, "items": [ { "identity": 1, "action": "created", "dtoTypeKey": "currencyExchange", "instance": { "identity": 1, "ownerId": 5, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 23, "createdByUserName": "Sample Text Data" } } ] } } |
POST | Currency/Exchange/ |
Create a new instance of the CurrencyExchange object. | |
Create a new instance of the CurrencyExchange object. POST Currency/Exchange/ { "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "createdByUserId": 2 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "create", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 16, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 15, "createdByUserName": "Sample Text Data" } ] } } |
PUT | Currency/Exchange/{id} |
Update an existing instance of the CurrencyExchange object. | |
Update an existing instance of the CurrencyExchange object. PUT Currency/Exchange/{id} { "identity": 1, "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "createdByUserId": 10 } HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "type": "update", "results": { "totalCount": 1, "items": [ { "identity": 1, "ownerId": 10, "ownerName": "Sample Text Data", "name": "Canadian Rates", "effective": "2021-04-26T15:25:27.587Z", "created": "2021-04-26T15:25:27.587Z", "createdByUserId": 10, "createdByUserName": "Sample Text Data" } ] } } |