You can get publish settings of your account with the getAccountPublishSettings method.
| Parameter | Type | Description |
|---|---|---|
| credentials (required) | credentials | Read the description of the Credentials object. |
After the request has been completed, the system returns an object with the following properties:
| Parameter | Type | Description |
|---|---|---|
| defaultContentPrivacy | string | Content type, set to items by default (public/private) |
| isPrivateContentViewedOnce | bool | True, if private content items can be viewed only once. |
| manualUploadEnabled | bool | True, if it's allowed to upload content items from the web interface. |
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetAccountPublishSettingsRequest xmlns="http://www.articulate-online.com/services/api/1.0/">
<Credentials>
<AccountUrl>http://myaccount.ispringonline.com</EmailAddress>
<Email>email@email.com</Password>
<Password>password</Password>
</Credentials>
</GetAccountPublishSettingsRequest>
</soap:Body>
</soap:Envelope>
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetAccountPublishSettingsResult xmlns="http://www.articulate-online.com/services/api/1.0/">
<DefaultContentPrivacy>private</DefaultContentPrivacy>
<IsPrivateContentViewedOnce>True</IsPrivateContentViewedOnce>
<manualUploadEnabled>True</manualUploadEnabled>
</GetAccountPublishSettingsResult>
</soap:Body>
</soap:Envelope>