- URL:https://<portal-url>/customersList
Description
Purchases, trials, and interests expressed by customers for items listed by this organization in the marketplace.
This operation allows filtering and sorting of provisions.
Request parameters
Parameter | Details |
---|---|
[Common Parameters] | For a complete listing, see Common parameters. |
status | Status of the provisions to be returned. Values: all (default) | expired | active active: Only provisions that are currently active will be returned. expired: Only provisions that have already expired will be returned. all active: Both active and expired provisions will be returned. |
type | Access type of the provisions to be returned. Values: REQUEST | TRIAL | PURCHASE | REQUESTANDTRIAL | REQUESTANDPURCHASE | TRIALANDPURCHASE REQUEST: Only provisions that have been requested will be returned. TRIAL: Only trial provisions will be returned. PURCHASE: Only subscription provisions will be returned. REQUESTANDTRIAL: Both provisions that have been requested and trial provisions will be returned. REQUESTANDPURCHASE: Both provisions that have been requested and subscriptions will be returned. TRIALANDPURCHASE: Both trial provisions and subscriptions will be returned. |
itemId | The item ID of the provision to be returned. |
orgname | Purchaser organization name of the provisions to be returned. |
modified | The last modified date of the provisions to be returned. The date specified should be in milliseconds from epoch. Example: modified=1454392931000 (Tue, 02 Feb 2016 06:02:11 GMT) |
sortFields | The fields to sort provisions by. The allowed sort field names are orgname, created, endDate, and modified. |
sortOrder | Describes whether the order returns in ascending or descending order. Values: asc | desc |
includeListing | If true, listing objects are included in the provision response. Values: true (default) | false |
num | The maximum number of provisions to be included in the result set response. The default value is 10, and the maximum allowed value is 100. The start parameter, along with the num parameter, can be used to paginate the query results. Note that the actual number of returned results may be less than num. This happens when the number of results remaining after start is less than num. Example: num=50 (Returns a max of 50 results in the response.) |
start | The number of the first entry in the result set response. The index number is 1-based. The default value of start is 1. (i.e. the first search result). The start parameter, along with the num parameter, can be used to paginate the query results. Example: start=11 (Returns result #11 as the first entry in the response.) |
Example usage
https://www.arcgis.com/sharing/rest/portals/HwhosSWTiJyaagbB0VDi/customersList
JSON response syntax
{
"total": <total number of results>,
"start": <results in first set>,
"num": <number of results per page>,
"nextStart": <result number of next page>,
"provisions": [
{
"provision": {<provision1>},
"customer": {<customer1>},
"listing": {<listing1>}
},
{
"provision": {<provision2>},
"customer": {<customer2>},
"listing": {<listing2>}
}
]
}
JSON response example
{
"total": 28,
"start": 1,
"num": 10,
"nextStart": 11,
"provisions": [{
"provision": {
"itemId": "448772a88d4b498d064ce2e8c6ff6b",
"provisionedItemId": "448772a88d4b498d064ce2e8c6ff6b",
"accountId": "HwhoSWTiJyaB0VDi",
"purchaserOrgId": "sWwd06TnJR4lHopc",
"purchaserUsername": "purchaser",
"purchaserFullName": "Test Full Name",
"purchaserEmail": "test@esri.com",
"purchaserPhone": "9097932853",
"startDate": 1454392931000,
"endDate": -1,
"purchased": true,
"trial": false,
"interested": false,
"created": 1454392922000,
"modified": 1454392931000,
"title": "TEST Listing"
},
"customer": {
"id": "sWwd06TnJR4lHopc",
"name": "nebul1",
"description": "<br>",
"thumbnail": "thumbnail.jpg"
},
"listing": {
"itemId": "448772a88d4b498d064ce2e8c6ff6b",
"licenseType": "ela",
"priceDesc": "100$",
"creditsPerTransaction": 0,
"listingAccess": "public",
"trialSupported": false,
"ecommerceEnabled": false,
"licenseBy": "licenseByUser",
"type": "Web Mapping Application",
"typeKeywords": ["JavaScript", "Map", "Mapping Site", "Online Map", "Ready To Use", "Web Map", "Registered App"],
"title": "TEST Listing",
"tags": ["test"],
"thumbnail": "thumbnail/ago_downloaded.png",
"appCategories": [],
"industries": [],
"languages": [],
"screenshots": [],
"owner": "provider-admin-username",
"created": 1454392915000,
"avgRating": 0,
"numComments": 0,
"numRatings": 0,
"vendor": {
"id": "HwhosSWTiJyaagbB0VDi",
"name": "My Org Name",
"description": "My Org description",
"thumbnail": "thumbnail.jpg",
"orgEmail": "emailIdInMyOrgContact@myOrgdomain.com",
"orgPhone": "111-1111-1111",
"orgUrl": "https://myorgurl/contactus.html"
}
}
}]
}