Skip to content

Allows changing Magento configuration settings via web services

Notifications You must be signed in to change notification settings

mikewhitby/configapi

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

Magento Config API

Take a look at the Magento Webservices Introduction page on the Magento Wiki if you're not sure how to connect and use the Magento API.

Usage

The config API provides three methods, here are is some PHP to get you going:

Read

$client->call($session, 'config.read', array('CONFIG_KEY'));

Set

$client->call($session, 'config.set', array('CONFIG_KEY', 'NEW_VALUE'));

Delete

$client->call($session, 'config.delete', array('CONFIG_KEY'));

About

Allows changing Magento configuration settings via web services

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages