TAG LINE
TAG LINE
SMALL TITLE
A listing of Services that are participating in a specified Share Plan for an Account.
identity READ-ONLY | "identity": 25 Type: Number This is the unique numeric identifier for the AccountSharePlanParticipation |
accountSharePlanId | "accountSharePlanId": 19 Type: Number Unique identifier for the associated AccountSharePlan object. |
accountSharePlanName | "accountSharePlanName": "Sample Name" Type: String The name of the object associated with the accountSharePlanId property. |
serviceId | "serviceId": 8 Type: Number Unique identifier for the associated Service object. |
serviceName | "serviceName": "Sample Name" Type: String The name of the object associated with the serviceId property. |
packageId | "packageId": 9 Type: Number Unique identifier for the associated Package object. |
packageName | "packageName": "Sample Name" Type: String The name of the object associated with the packageId property. |
dataParticipatingLimit | "dataParticipatingLimit": 3 Type: Number |
dataUsageUnitId | "dataUsageUnitId": 9 Type: Number Unique identifier for the associated UsageUnit object. |
dataUsageUnitName | "dataUsageUnitName": "Sample Name" Type: String The name of the object associated with the dataUsageUnitId property. |
timeParticipatingLimit | "timeParticipatingLimit": 6 Type: Number |
timeUsageUnitId | "timeUsageUnitId": 0 Type: Number Unique identifier for the associated UsageUnit object. |
timeUsageUnitName | "timeUsageUnitName": "Sample Name" Type: String The name of the object associated with the timeUsageUnitId property. |
countParticipatingLimit | "countParticipatingLimit": 0 Type: Number |
countUsageUnitId | "countUsageUnitId": 2 Type: Number Unique identifier for the associated UsageUnit object. |
countUsageUnitName | "countUsageUnitName": "Sample Name" Type: String The name of the object associated with the countUsageUnitId property. |
moneyParticipatingLimit | "moneyParticipatingLimit": 6 Type: Number |
moneyUsageUnitId | "moneyUsageUnitId": 26 Type: Number Unique identifier for the associated UsageUnit object. |
moneyUsageUnitName | "moneyUsageUnitName": "Sample Name" Type: String The name of the object associated with the moneyUsageUnitId property. |
GET | Account/SharePlan/Participation/ |
Retrieve all of the AccountSharePlanParticipation objects. | |
Retrieve all of the AccountSharePlanParticipation objects. GET Account/SharePlan/Participation/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "accountSharePlanId": 22, "accountSharePlanName": "Sample Text Data", "serviceId": 7, "serviceName": "Sample Text Data", "packageId": 16, "packageName": "Sample Text Data", "dataParticipatingLimit": 15, "dataUsageUnitId": 27, "dataUsageUnitName": "Sample Text Data", "timeParticipatingLimit": 7, "timeUsageUnitId": 19, "timeUsageUnitName": "Sample Text Data", "countParticipatingLimit": 23, "countUsageUnitId": 6, "countUsageUnitName": "Sample Text Data", "moneyParticipatingLimit": 3, "moneyUsageUnitId": 4, "moneyUsageUnitName": "Sample Text Data" } ] } |
GET | Account/SharePlan/Participation/Paged |
Retrieve all of the AccountSharePlanParticipation objects in a paged fashion. This endpoint implements pagination for its results. Individual pages can be requested to return a particular paged set in the list of results. To learn more, see details on working with paginated endpoints. | |
Retrieve all of the AccountSharePlanParticipation objects in a paged fashion. GET Account/SharePlan/Participation/Paged HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "pagination": { "pageNumber": 1, "pageSize": 20, "excludeTotalCount": false }, "pagedResults": { "totalCount": 1, "items": [ { "identity": 1, "accountSharePlanId": 27, "accountSharePlanName": "Sample Text Data", "serviceId": 15, "serviceName": "Sample Text Data", "packageId": 20, "packageName": "Sample Text Data", "dataParticipatingLimit": 1, "dataUsageUnitId": 16, "dataUsageUnitName": "Sample Text Data", "timeParticipatingLimit": 19, "timeUsageUnitId": 11, "timeUsageUnitName": "Sample Text Data", "countParticipatingLimit": 25, "countUsageUnitId": 16, "countUsageUnitName": "Sample Text Data", "moneyParticipatingLimit": 14, "moneyUsageUnitId": 24, "moneyUsageUnitName": "Sample Text Data" } ] } } |
GET | Account/SharePlan/Participation/{id} |
Retrieve an instance of the AccountSharePlanParticipation object by its ID. | |
{id} | Unique identifier for the AccountSharePlanParticipation object. |
Retrieve an instance of the AccountSharePlanParticipation object by its ID. GET Account/SharePlan/Participation/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "accountSharePlanId": 26, "accountSharePlanName": "Sample Text Data", "serviceId": 8, "serviceName": "Sample Text Data", "packageId": 6, "packageName": "Sample Text Data", "dataParticipatingLimit": 18, "dataUsageUnitId": 9, "dataUsageUnitName": "Sample Text Data", "timeParticipatingLimit": 26, "timeUsageUnitId": 21, "timeUsageUnitName": "Sample Text Data", "countParticipatingLimit": 1, "countUsageUnitId": 23, "countUsageUnitName": "Sample Text Data", "moneyParticipatingLimit": 26, "moneyUsageUnitId": 15, "moneyUsageUnitName": "Sample Text Data" } } |