AgileApps Support Wiki Pre Release

Difference between revisions of "REST API:developConfig Resource"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
 
Line 1: Line 1:
Manage development configuration details using the [[REST API]].
Manage development configuration setting using the [[REST API]].


===Access Permissions===
===Access Permissions===

Latest revision as of 22:43, 12 June 2014

Manage development configuration setting using the REST API.

Access Permissions

Lock-tiny.gif

Users that have the Use Development Features permission can use this resource. 

Read developConfig Settings

Method
GET
URI
https://{yourDomain}/networking/rest/developConfig
Response
<syntaxhighlight lang="xml" enclose="div">

<platform>

   <developConfig>
       <id>...</id>
       <log_level>3</log_level>
       <namespace>demo</namespace>
   </developConfig>
   <message>
       0
       <description>Success</description>
   </message>

</platform> </syntaxhighlight>

See also: REST API:Error Codes

Update developConfig Settings

Method
PUT
URI
https://{yourDomain}/networking/rest/developConfig/{recordId}
Request
<syntaxhighlight lang="xml" enclose="div">

<platform>

   <developConfig>
       <log_level>3</log_level>
       <namespace>demo</namespace>
   </developConfig>

</platform> </syntaxhighlight>

Response
<syntaxhighlight lang="xml" enclose="div">

<platform>

   <message>
       0
       <description>Success</description>
   </message>

</platform> </syntaxhighlight>

See also: REST API:Error Codes

Fields

Name Type Attribute Required During Add Description Additional Information
id String Read Only Record Id
log_level Number Editable on Update
namespace String Editable on Update