API - Solutions

Getting a list of all solutions

This request returns a summary of all solutions in the account.

GET "https://app.samanage.com/solutions.xml"

curl --digest -u "username:password" -H "Accept: application/vnd.samanage.v1+xml" -X GET "https://app.samanage.com/solutions.xml"


Getting solution's details

Request

GET "https://app.samanage.com/solutions/5.xml"

curl --digest -u "username:password" -H "Accept: application/vnd.samanage.v1+xml" -X GET "https://app.samanage.com/solutions/5.xml"

Response

<solution>
<solution>this is my solution</solution>
<created-at>2009-05-25T00:25:35Z</created-at>
<problem>how to reset the password of my email account</problem>
<updated-at>2009-05-25T00:25:35Z</updated-at>
<href>https://app.samanage.com/solutions/5.xml</href>
<resolution>Click on the "Reset Password" on the upper right corner. Verify your email address. A password reset link will be emailed to the email address provided.</resolution>
<id>5</id>
</solution>