Dated Conversion Rate

Represents the dated exchange rates used by an organization for which the multi currency and the effective datedcurrency features are enabled.

conversionRate
number <float>

Conversion rate of this currency type against the default currency.

createdAt
string <date-time>

The date and time the factor when dated conversion rate was created.

endDate
string <date-time>

Indicates whether this currency type is ended/closed.

isoCode
string <= 3 characters

ISO code of the currency,three-letter currency ISO codes defined by the ISO 4217 standard, such as USD, GBP, or JPY.

startDate
string <date-time>

The date and time the factor was it applied/started.

updatedAt
string <date-time>

The date and time the factor when dated conversion rate was updated.

{
  • "conversionRate": 0,
  • "createdAt": "2019-08-24T14:15:22Z",
  • "endDate": "2019-08-24T14:15:22Z",
  • "isoCode": "str",
  • "startDate": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}

⌵ Dated Conversion Rate Actions

Get a Collection of Dated Conversion Rates

SecuritybearerAuth
Responses
200

OK

422

JSON error message

get/datedConversionRates
Request samples
Response samples
application/vnd.api+json
{
  • "data": [
    ]
}

Create a New Dated Conversion Rate

SecuritybearerAuth
Request
Request Body schema: application/vnd.api+json
required
object
Responses
201

Created

422

JSON error message

post/datedConversionRates
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Delete an Existing Dated Conversion Rate by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
204

Deleted

422

JSON error message

delete/datedConversionRates/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "errors": [
    ]
}

Get a Dated Conversion Rate by ID

SecuritybearerAuth
Request
path Parameters
id
required
integer
Responses
200

OK

404

Not Found

get/datedConversionRates/{id}
Request samples
Response samples
application/vnd.api+json
{
  • "data": {
    }
}

Update a Dated Conversion Rate

SecuritybearerAuth
Request
path Parameters
id
required
integer
Request Body schema: application/vnd.api+json
required
object
Responses
200

OK

422

JSON error message

patch/datedConversionRates/{id}
Request samples
application/vnd.api+json
{
  • "data": {
    }
}
Response samples
application/vnd.api+json
{
  • "data": {
    }
}