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": 9 Type: Number This is the unique numeric identifier for the AccountSharePlanParticipation |
accountSharePlanId | "accountSharePlanId": 11 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": 10 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": 23 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": 17 Type: Number The data limit which this service can withdraw from the Share Plan. |
dataUsageUnitId | "dataUsageUnitId": 1 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": 10 Type: Number The time limit which this service can withdraw from the Share Plan. |
timeUsageUnitId | "timeUsageUnitId": 8 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": 24 Type: Number The count limit which this service can withdraw from the Share Plan. |
countUsageUnitId | "countUsageUnitId": 17 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": 7 Type: Number The money limit which this service can withdraw from the Share Plan. |
moneyUsageUnitId | "moneyUsageUnitId": 19 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": 18, "accountSharePlanName": "Sample Text Data", "serviceId": 14, "serviceName": "Sample Text Data", "packageId": 9, "packageName": "Sample Text Data", "dataParticipatingLimit": 5, "dataUsageUnitId": 26, "dataUsageUnitName": "Sample Text Data", "timeParticipatingLimit": 1, "timeUsageUnitId": 1, "timeUsageUnitName": "Sample Text Data", "countParticipatingLimit": 2, "countUsageUnitId": 19, "countUsageUnitName": "Sample Text Data", "moneyParticipatingLimit": 23, "moneyUsageUnitId": 27, "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": 20, "accountSharePlanName": "Sample Text Data", "serviceId": 24, "serviceName": "Sample Text Data", "packageId": 9, "packageName": "Sample Text Data", "dataParticipatingLimit": 23, "dataUsageUnitId": 25, "dataUsageUnitName": "Sample Text Data", "timeParticipatingLimit": 22, "timeUsageUnitId": 27, "timeUsageUnitName": "Sample Text Data", "countParticipatingLimit": 19, "countUsageUnitId": 7, "countUsageUnitName": "Sample Text Data", "moneyParticipatingLimit": 26, "moneyUsageUnitId": 8, "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": 5, "accountSharePlanName": "Sample Text Data", "serviceId": 1, "serviceName": "Sample Text Data", "packageId": 14, "packageName": "Sample Text Data", "dataParticipatingLimit": 8, "dataUsageUnitId": 10, "dataUsageUnitName": "Sample Text Data", "timeParticipatingLimit": 16, "timeUsageUnitId": 14, "timeUsageUnitName": "Sample Text Data", "countParticipatingLimit": 21, "countUsageUnitId": 13, "countUsageUnitName": "Sample Text Data", "moneyParticipatingLimit": 12, "moneyUsageUnitId": 26, "moneyUsageUnitName": "Sample Text Data" } } |