The get offer method allows retrieval of detailed information for a particular offer. It returns offer information such as the offer code, name, description, status, as well as price plan information configured for the specified offer.
URL | https://[host].accumulus.com/json/offers |
---|---|
HTTP Method | GET |
Query String Parameters |
skip: number of records to skip (used for paging). Required. take: number of records to take (maximum is 100). Required. |
Example
GET https://.accumulus.com/json/offers?skip=0&take=10
Response Body
{ "Message":"SUCCESS", "Offers": [{ "Description":"The business video hosting offering includes up to 5GB of space and up to 1 TB of data transfer per month.", "Name":"Business Video Hosting", "OfferCode":"BVHO", "Status":"Active" },{ "Description":"The media backup service allows backing up of all your business critical data.", "Name":"Media Backup Service", "OfferCode":"MBKO", "Status":"Active" }], "TotalItemCount":2 }