TAG LINE
TAG LINE
SMALL TITLE

Account / SharePlan / Participation

(API Version v5)


A listing of Services that are participating in a specified Share Plan for an Account.


What can you do with AccountSharePlanParticipation?


Properties

Property Details
identity
READ-ONLY
"identity": 3
Type: Number
This is the unique numeric identifier for the AccountSharePlanParticipation
accountSharePlanId
"accountSharePlanId": 1
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": 2
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": 20
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": 23
Type: Number
dataUsageUnitId
"dataUsageUnitId": 16
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": 11
Type: Number
timeUsageUnitId
"timeUsageUnitId": 10
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": 12
Type: Number
countUsageUnitId
"countUsageUnitId": 14
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": 24
Type: Number
moneyUsageUnitId
"moneyUsageUnitId": 16
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.


End Points

GETAccount/SharePlan/Participation/
Retrieve all of the AccountSharePlanParticipation objects.
Retrieve all of the AccountSharePlanParticipation objects.
GET Account/SharePlan/Participation/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "accountSharePlanId": 7,
            "accountSharePlanName": "Sample Text Data",
            "serviceId": 24,
            "serviceName": "Sample Text Data",
            "packageId": 14,
            "packageName": "Sample Text Data",
            "dataParticipatingLimit": 1,
            "dataUsageUnitId": 12,
            "dataUsageUnitName": "Sample Text Data",
            "timeParticipatingLimit": 5,
            "timeUsageUnitId": 1,
            "timeUsageUnitName": "Sample Text Data",
            "countParticipatingLimit": 10,
            "countUsageUnitId": 26,
            "countUsageUnitName": "Sample Text Data",
            "moneyParticipatingLimit": 14,
            "moneyUsageUnitId": 22,
            "moneyUsageUnitName": "Sample Text Data"
        }
    ]
}
GETAccount/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
View Sample Response
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": 4,
                "accountSharePlanName": "Sample Text Data",
                "serviceId": 21,
                "serviceName": "Sample Text Data",
                "packageId": 23,
                "packageName": "Sample Text Data",
                "dataParticipatingLimit": 25,
                "dataUsageUnitId": 3,
                "dataUsageUnitName": "Sample Text Data",
                "timeParticipatingLimit": 6,
                "timeUsageUnitId": 8,
                "timeUsageUnitName": "Sample Text Data",
                "countParticipatingLimit": 22,
                "countUsageUnitId": 4,
                "countUsageUnitName": "Sample Text Data",
                "moneyParticipatingLimit": 8,
                "moneyUsageUnitId": 19,
                "moneyUsageUnitName": "Sample Text Data"
            }
        ]
    }
}
GETAccount/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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "accountSharePlanId": 19,
        "accountSharePlanName": "Sample Text Data",
        "serviceId": 13,
        "serviceName": "Sample Text Data",
        "packageId": 12,
        "packageName": "Sample Text Data",
        "dataParticipatingLimit": 20,
        "dataUsageUnitId": 2,
        "dataUsageUnitName": "Sample Text Data",
        "timeParticipatingLimit": 13,
        "timeUsageUnitId": 23,
        "timeUsageUnitName": "Sample Text Data",
        "countParticipatingLimit": 4,
        "countUsageUnitId": 10,
        "countUsageUnitName": "Sample Text Data",
        "moneyParticipatingLimit": 23,
        "moneyUsageUnitId": 10,
        "moneyUsageUnitName": "Sample Text Data"
    }
}