LocalizationKeys

Lists all Localization Keys.

get

This API requires a Giver session.

Path parameters
strSessionIDstringRequired

The session ID

Responses
chevron-right
200

Success

application/json
get
/memori/v2/LocalizationKeys/{strSessionID}
200

Success

Lists Localization Keys with pagination.

get

This API requires a Giver session.

Path parameters
strSessionIDstringRequired

The session ID

frominteger · int32Required

The 0-based index of the first Localization Key to list

howManyinteger · int32Required

The number of the Localization Keys to list

Responses
chevron-right
200

Success

application/json
get
/memori/v2/LocalizationKeys/{strSessionID}/{from}/{howMany}
200

Success

Get an existing Localization Key.

get

This API requires a Giver session.

Path parameters
strSessionIDstringRequired

The session ID

strKeystringRequired

The key of the Localization Key

Responses
chevron-right
200

Success

application/json
get
/memori/v2/LocalizationKey/{strSessionID}/{strKey}
200

Success

Removes an existing Localization Key.

delete

This API requires a Giver session. This is only possible if the key is part of a key set, where a key set is a set of keys of a common prefix and an index, e.g.: INPUT_QUIT_1, INPUT_QUIT_2 etc. Any index can be specified, the key set will be reordered appropriately.

Path parameters
strSessionIDstringRequired

The session ID

strKeystringRequired

The key of the Localization Key

Responses
chevron-right
200

Success

application/json
delete
/memori/v2/LocalizationKey/{strSessionID}/{strKey}
200

Success

Add a new Localization Key.

post

This API requires a Giver session. This is only possible if the key is part of a key set, where a key set is a set of keys of a common prefix and an index, e.g.: INPUT_QUIT_1, INPUT_QUIT_2 etc. Any index can be specified, the key set will be reordered appropriately.

Path parameters
strSessionIDstringRequired

The session ID

Body
keystring | nullableOptional

Localization Key. Required during Add operations. Ignored during Update operations.

valuestring | nullableOptional

Value of the Localization Key. Required during Add and Update operations.

creationTimestampstring · date-time | nullableOptional

Timestamp of creation. Always present when reading/receiving an object, ignored when writing/sending an object.

creationSessionIDstring | nullableOptional

ID of the session that created this object.

lastChangeTimestampstring · date-time | nullableOptional

Timestamp of latest change. Always present when reading/receiving an object, ignored when writing/sending an object.

lastChangeSessionIDstring | nullableOptional

ID of the latest session that changed this object.

Responses
chevron-right
200

Success

application/json
post
/memori/v2/LocalizationKey/{strSessionID}
200

Success

Updates an existing Localization Key.

patch

This API requires a Giver session.

Path parameters
strSessionIDstringRequired

The session ID

Body
keystring | nullableOptional

Localization Key. Required during Add operations. Ignored during Update operations.

valuestring | nullableOptional

Value of the Localization Key. Required during Add and Update operations.

creationTimestampstring · date-time | nullableOptional

Timestamp of creation. Always present when reading/receiving an object, ignored when writing/sending an object.

creationSessionIDstring | nullableOptional

ID of the session that created this object.

lastChangeTimestampstring · date-time | nullableOptional

Timestamp of latest change. Always present when reading/receiving an object, ignored when writing/sending an object.

lastChangeSessionIDstring | nullableOptional

ID of the latest session that changed this object.

Responses
chevron-right
200

Success

application/json
patch
/memori/v2/LocalizationKey/{strSessionID}
200

Success

Last updated