Get all Settings

You can get all of the project settings via one API call using a client_credential token. The response will be in object format as shown below.

The default calculation_method is simple. Your calculation_method setting will not be returned unless you have updated it to use line by doing a PUT first.

Get all project settings

GET https://api.moltin.com/v2/settings

Headers

{
    "data": {
        "type": "settings",
        "page_length": 100,
        "list_child_products": true,
        "additional_languages": [],
        "calculation_method": "simple"
    }
}
curl -X GET https://api.moltin.com/v2/settings \
     -H "Authorization: Bearer XXXX"

Last updated