Get Configurations

This API endpoint is used to get all configurations.

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…
📘

mode:dashboard

This param returns an object of objects with the name as a key instead of an array of object.

{
    "error": false,
    "result": [
        {
            "id": 1,
            "key": "stripe_publishable",
            "value": ""
        },
        {
            "id": 2,
            "key": "stripe_publishable_sandbox",
            "value": "pk_test_SP5YYDD4PdEVfH8U2QJhsVxR"
        },
        ...
    ]
}
{
    "error": false,
    "result": {
        "stripe_publishable": {
            "id": 1,
            "key": "stripe_publishable",
            "value": ""
        },
        "stripe_publishable_sandbox": {
            "id": 2,
            "key": "stripe_publishable_sandbox",
            "value": "pk_test_SP5YYDD4PdEVfH8U2VxR"
        },
        "stripe_secret": {
            "id": 3,
            "key": "stripe_secret",
            "value": ""
        },
        "stripe_secret_sandbox": {
            "id": 4,
            "key": "stripe_secret_sandbox",
            "value": "sk_test_Xe3oDRGjJONWjP0M8Va"
        },
        ...
    }
}

Using Ordering SDK

`


const response = await ordering.configs().get();

// mode dictionary
const response = await ordering.configs().asDictionary().get();
Path Params
string
required
Defaults to en
string
required
Defaults to demo
string
required
Defaults to v400
Query Params
string
int32
int32
string
Defaults to dictionary
Responses

Language
Credentials
Header
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json