sociotoco.sets.createNew
With the sociotoco.sets.createNew method you can create
a new Sociotoco Set. Each Sociotoco Set has a unique SociotocoID.
This method will return the SociotocoID of the created set. You can
save this SociotocoID in your (Social CRM) system and use it as a
reference.
Authentication
This method requires authentication.
Arguments
Required
Example Request
GET
/services/1.1/rest?method=sociotoco.sets.createNew&key=[your_key]&time=[unix_timestamp]&sig=[signature]
HTTP/1.1
Example Response
<?xml version="1.0" encoding="utf-8"?>
<response>
<sociotocoSet sociotocoId="89c13185-8756-4577-935d-c3e83e6e77ce">
<name />
<urlName>GMRW32AP</urlName>
</sociotocoSet>
</response>
{
"response":{
"sociotocoSet":{
"sociotocoId":"89c13185-8756-4577-935d-c3e83e6e77ce",
"name":null,
"urlName":"GMRW32AP"
}
}
}
Error codes
| 100 |
KeyMissing
There is no key argument in the query string. |
| 101 |
SignatureMissing
There is no sig argument in the query string. |
| 200 |
KeyInvalid
There is an invalid key argument in the query string. |
| 201 |
KeyNotFound
The key is not found as a registered api key. |
| 210 |
SignatureInvalid
The supplied signature in the query string is
invalid. |
| 220 |
MethodNotSupported
The supplied method in the query string is not
supported. |