TAG LINE
SMALL TITLE
id | "id": "Hello World" Type: String This is the unique numeric identifier for the AccountPackage |
accountId | "accountId": 14 Type: Number Unique identifier for the associated Account object. |
created | "created": "2005-04-11T14:56:24" Type: Date |
nextBill | "nextBill": "2005-04-11T14:56:24" Type: Date |
name | "name": "Hello World" Type: String |
oneTimeAmount | "oneTimeAmount": "Hello World" Type: String |
lastStatusChanged | "lastStatusChanged": "2005-04-11T14:56:24" Type: Date |
effective | "effective": "2005-04-11T14:56:24" Type: Date |
updated | "updated": "2005-04-11T14:56:24" Type: Date |
effectiveCancel | "effectiveCancel": "2005-04-11T14:56:24" Type: Date |
packageFrequencyId | "packageFrequencyId": 19 Type: Number Unique identifier for the associated PackageFrequency object. |
termId | "termId": 23 Type: Number Unique identifier for the associated Term object. |
createdByUserId | "createdByUserId": 24 Type: Number Unique identifier for the associated User object. |
billDay | "billDay": 16 Type: Number |
updatedByUserId | "updatedByUserId": 18 Type: Number Unique identifier for the associated User object. |
usageBillDay | "usageBillDay": 15 Type: Number |
activation | "activation": "2005-04-11T14:56:24" Type: Date |
finalBill | "finalBill": "2005-04-11T14:56:24" Type: Date |
lastBilled | "lastBilled": "2005-04-11T14:56:24" Type: Date |
accountSharePlanId | "accountSharePlanId": 2 Type: Number Unique identifier for the associated AccountSharePlan object. |
lastUsageBilled | "lastUsageBilled": "2005-04-11T14:56:24" Type: Date |
accountProductCodeId | "accountProductCodeId": 12 Type: Number Unique identifier for the associated AccountProductCode object. |
packageCategoryId | "packageCategoryId": 27 Type: Number Unique identifier for the associated PackageCategory object. |
chargeRecurringIfUsage | "chargeRecurringIfUsage": true Type: Boolean |
id | "id": "Hello World" Type: String |
When updating an object you use the update request header with the list of properties to update. Then you need only supply the new values in the body of your request. Please note, this header can only be used with PUT or PATCH requests.
Field List:
The PATCH verb allows you to update an object. Just like a put, you only need to supply the fields that will be updated in the payload. However, a patch allows you to update many objects at once.
PATCH operations can be used as a standard API call or nested within the envelope of a DataFlow. Below you will find the child objects that can be updated as part of PATCH operations for the AccountPackage object.
Standard PATCH objects:
DataFlow PATCH objects:
DELETE | api/v2/Account/Package/{id:long} |
Delete an instance of the AccountPackage object. |
GET | api/v2/Account/Package |
Retrieve all of the AccountPackage objects. |
GET | api/v2/Account/Package/Paged |
Retreive all of the AccountPackage objects in a paged fashion. |
GET | api/v2/Account/Package/Paged/Detail |
Retreive all of the AccountPackage objects in a paged fashion with all object details. |
GET | api/v2/Account/Package/{id:long} |
Retrieve all of the AccountPackage objects. |
GET | api/v2/Account/Package/{id:long}/Detail |
Retrieve all of the AccountPackage objects. |
PATCH | api/v2/Account/Package/{id:long} |
Update the AccountPackage object and optionally make changes to any child objects. |
POST | api/v2/Account/Package |
Create a new instance of the AccountPackage object. |
POST | api/v2/Account/Package/FromCatalog |
Create a new instance of the AccountPackage object. |
PUT | api/v2/Account/Package/{id:long} |
Update an existing instance of the AccountPackage object. |