administrators
/administrators [GET]
| API Support | Available since | Last updated | Output |
|---|---|---|---|
| 5.9500 | 6.2004 | json, xml |
Description
Returns a list of PageSeeder administrators for this server.
Use POST /administrators to create a new administrator.
Parameters
None.
Permission
This service requires administrator.
Response
Returns HTTP 200.
Response structure
Each member element represents one administrator.
<administrators>
<member id="[member id]"
firstname="[first name]"
surname="[surname]"
username="[username]"
email="[email]"
status="[activated|unactivated|set-password]">
<fullname>[full name]</fullname>
</member>
...
</administrators>
Example response
<administrators>
<member id="123"
firstname="John"
surname="Smith"
username="jsmith"
email="jsmith@example.org"
status="activated">
<fullname>John Smith</fullname>
</member>
<member id="456"
firstname="Jane"
surname="Doe"
username="jdoe"
email="jdoe@example.org"
status="activated">
<fullname>Jane Doe</fullname>
</member>
</administrators>Error Handling
No specific errors expected for this service.