AgileApps Support Wiki Pre Release

Difference between revisions of "REST API:developConfig Resource"

From AgileApps Support Wiki
imported>Aeric
imported>Aeric
Line 2: Line 2:


===Access Permissions===
===Access Permissions===
{{permissions|Use Development Features|use this Resource]}}
{{permissions|Use Development Features|use this resource]}}


===Read developConfig Settings ===
===Read developConfig Settings ===

Revision as of 00:40, 8 June 2012

Manage development configuration details 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