Get Application Values List
Gets a list of Application Values (Configuration).
URL
List:
/cnbs/v1/apu/values
Detail:
/cnbs/v1/apu/values/id
Method(s)
GET
Parameters
Optional GET
- Parameters (URI Parameter)
- Key (key_au)
- Table key of a value entry, a value is a key/value pair.
- If supplied, a single key/value pair will be returned. If not supplied, the entire table contents will be returned.
Example GET
cURL:
curl -X GET https://<<your.server.here>>/CNBS/v1/apu/values?sap-client=800&sap-language=EN&apiid=CNBSMV01R -H content-type: application/json -H cnbssysid: nR4kLO/8HCiuv+1hev5fbMgcMpOwhKf3GvJZvxZ3ZPQ=
Response
The response consists of an values list table (data) and a status (status).
- Values List (data)
- Key (key_au)
- Value (value_au)
- Status (status)
- Message Type (message_type)
- SAP Message Type.
- Errors:
- E = Error
- A = Abort
- X = Exception
- Others:
- S = Success
- W = Warning
- I = Information
- Message Identifier (message_identification)
- SAP Message ID.
- Message Number (message_number)
- SAP Message Number.
- Message Line (message_line_string)
- SAP Message Text.
Example Response
JSON:
{ "data": [ { "key_au": "ApplicationUrl", "value_au": "http://localhost:3000/" } ], "status": { "message_type": "S", "message_identification": "/CNBS/X_API", "message_number": 10, "message_line_string": "Request successfully processed", "json": "" } }