Skip to main content
POST
/
organizations
/
{orgId}
/
picklists
/
currency
Create Currency
curl --request POST \
  --url https://api.m3ter.com/organizations/{orgId}/picklists/currency \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "version": 123,
  "code": "code",
  "archived": true,
  "maxDecimalPlaces": 2,
  "roundingMode": "UP"
}
'
{
  "id": "<string>",
  "version": 123,
  "code": "<string>",
  "name": "<string>",
  "archived": true,
  "maxDecimalPlaces": 123,
  "roundingMode": "UP",
  "dtCreated": "2023-11-07T05:31:56Z",
  "dtLastModified": "2023-11-07T05:31:56Z",
  "createdBy": "<string>",
  "lastModifiedBy": "<string>"
}

Authorizations

Authorization
string
header
required

m3ter supports machine to machine authentication using the clientCredentials OAuth2 flow.

The authorizationCode flow controls access for human users via the m3ter Console application.

Path Parameters

orgId
string
required

The unique identifier (UUID) for your Organization. The Organization represents your company as a direct customer of our service.

Body

application/json
name
string
required

The name of the entity.

Required string length: 1 - 200
version
integer<int64>

The version number of the entity:

  • Create entity: Not valid for initial insertion of new entity - do not use for Create. On initial Create, version is set at 1 and listed in the response.
  • Update Entity: On Update, version is required and must match the existing version because a check is performed to ensure sequential versioning is preserved. Version is incremented by 1 and listed in the response.
code
string

The short code for the entity.

Maximum string length: 80
Example:

"code"

archived
boolean

A Boolean TRUE / FALSE flag indicating whether the entity is archived. An entity can be archived if it is obsolete.

  • TRUE - the entity is in the archived state.
  • FALSE - the entity is not in the archived state.
maxDecimalPlaces
integer<int32>

Indicates the maximum number of decimal places to use for this Currency.

Required range: 0 <= x <= 5
Example:

2

roundingMode
enum<string>
Available options:
UP,
DOWN,
CEILING,
FLOOR,
HALF_UP,
HALF_DOWN,
HALF_EVEN,
UNNECESSARY

Response

Returns the created Currency

id
string
required

The UUID of the entity.

version
integer<int64>

The version number:

  • Create: On initial Create to insert a new entity, the version is set at 1 in the response.
  • Update: On successful Update, the version is incremented by 1 in the response.
code
string

The short code of the data entity.

name
string

The name of the data entity.

archived
boolean

TRUE / FALSE flag indicating whether the data entity is archived. An entity can be archived if it is obsolete.

maxDecimalPlaces
integer<int32>

This indicates the maximum number of decimal places to use for this Currency.

roundingMode
enum<string>
Available options:
UP,
DOWN,
CEILING,
FLOOR,
HALF_UP,
HALF_DOWN,
HALF_EVEN,
UNNECESSARY
dtCreated
string<date-time>

The date and time (in ISO-8601 format) when the Currency was created.

dtLastModified
string<date-time>

The date and time (in ISO-8601 format) when the Currency was last modified.

createdBy
string

The unique identifier (UUID) of the user who created this Currency.

lastModifiedBy
string

The unique identifier (UUID) of the user who last modified this Currency.