Get a list of all currency exchange rates.
External DocumentationTo learn more, visit the Oracle Netsuite documentation.

Parameters

ParameterDescription
LimitSpecify the number of records retrieved in the response.
OffsetSpecify the offset at which to start record retrieval.
Return All PagesAutomatically fetch all resources, page by page.
Search QueryThe search query used to filter results.

Note: For more information about the Search Query parameter format, visit Oracle Netsuite’s documentation.

Example Output

{
	"links": [
		{
			"rel": "next",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate?limit=10&offset=10"
		},
		{
			"rel": "last",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate?limit=10&offset=50"
		},
		{
			"rel": "self",
			"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyRate"
		}
	],
	"count": 10,
	"hasMore": true,
	"items": [
		{
			"links": [
				{
					"rel": "self",
					"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate/8"
				}
			],
			"id": "8"
		},
		{
			"links": [
				{
					"rel": "self",
					"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate/9"
				}
			],
			"id": "9"
		},
		{
			"links": [
				{
					"rel": "self",
					"href": "https://account_id.suitetalk.api.netsuite.com/services/rest/record/v1/currencyrate/10"
				}
			],
			"id": "10"
		}
	],
	"offset": 0,
	"totalResults": 60
}

Workflow Library Example

List Currency Rates with Oracle Netsuite and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop