Get types: GET /Extendedvaluelist



VERB
Header
Resource/Id/Selector
Description
Return data
GET
Ticket
/domains/{domainId}/extendedvaluelists
lists all extended valuelists within a space
Total Count (int):
Data (array):




GET
Ticket
domains/{domainId}/extendedvaluelists/{id}
lists a whole extended valuelist

Name (string)
Reference (string)
AutomaticallyGenerateKeys (bool)
ExternalDataSet (bool)
Description (string)
Data (array)



Patch types: Patch /Extendedvaluelist



VERB
Header
Resource/Id/Selector
Description
PATCHTicket
domains/{domainId}/extendedvaluelists/{id}
Updates a whole extended valuelist with new data
By using the operations "Insert" , "Update" and "Delete".

The operations affect rows for an extended value list where the row-key is used as an identifier. You can update multiple rows in one request. Example:
PATCH data:
[
{ "opt": "insert", "path": "/data/key1", "values": ["A", "B", "C", "D"]},
{ "opt": "update", "path": "/data/key2", values": ["Aa", "Bb", "Cc", "Dd"]},
{ "opt": "delete", "path": "/data/key3"}
]

This request will:
- Insert a new row with A, B, C, D as values
- Update the row with the key "key2"
- Delete the row with the key "key3"


Exempel string:

PATCH https://host/api/v1.0/domains/"domainid"/extendedvaluelists/"listid"