TAG LINE
TAG LINE
SMALL TITLE
Represents a linking between a Package frequency and currency in which a Package can be sold.
identity READ-ONLY | "identity": 5 Type: Number This is the unique numeric identifier for the PackageFrequencyPackageCurrency |
isActive | "isActive": true Type: Boolean Whether or not this combination of Package Frequency and Currency is active. |
packageFrequencyId | "packageFrequencyId": 10 Type: Number Unique identifier for the associated PackageFrequency object. |
packageFrequencyName | "packageFrequencyName": "Sample Name" Type: String The name of the object associated with the packageFrequencyId property. |
packageCurrencyId | "packageCurrencyId": 3 Type: Number Unique identifier for the associated PackageCurrency object. |
packageCurrencyName | "packageCurrencyName": "Sample Name" Type: String The name of the object associated with the packageCurrencyId property. |
created READ-ONLY | "created": "2021-04-26T15:25:27.587Z" Type: Date This is a system generated date when the record was created. Date and time values are specified in the ISO 8601 format. |
updated READ-ONLY | "updated": "2021-04-26T15:25:27.587Z" Type: Date The date time stamp when this record was updated. Date and time values are specified in the ISO 8601 format. |
priceBookId | "priceBookId": 10 Type: Number Unique identifier for the associated PriceBook object. |
priceBookName | "priceBookName": "Sample Name" Type: String The name of the object associated with the priceBookId property. |
GET | Package/Frequency/Currency/ |
Retrieve all of the PackageFrequencyPackageCurrency objects. | |
Retrieve all of the PackageFrequencyPackageCurrency objects. GET Package/Frequency/Currency/ HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "totalCount": 1, "items": [ { "identity": 1, "isActive": true, "packageFrequencyId": 22, "packageFrequencyName": "Sample Text Data", "packageCurrencyId": 8, "packageCurrencyName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z", "updated": "2021-04-26T15:25:27.587Z", "priceBookId": 5, "priceBookName": "Sample Text Data" } ] } |
GET | Package/Frequency/Currency/Paged |
Retrieve all of the PackageFrequencyPackageCurrency 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 PackageFrequencyPackageCurrency objects in a paged fashion. GET Package/Frequency/Currency/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, "isActive": true, "packageFrequencyId": 1, "packageFrequencyName": "Sample Text Data", "packageCurrencyId": 23, "packageCurrencyName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z", "updated": "2021-04-26T15:25:27.587Z", "priceBookId": 3, "priceBookName": "Sample Text Data" } ] } } |
GET | Package/Frequency/Currency/{id} |
Retrieve an instance of the PackageFrequencyPackageCurrency object by its ID. | |
{id} | Unique identifier for the PackageFrequencyPackageCurrency object. |
Retrieve an instance of the PackageFrequencyPackageCurrency object by its ID. GET Package/Frequency/Currency/{id} HTTP/1.1 200 OK { "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b", "instance": { "identity": 1, "isActive": true, "packageFrequencyId": 14, "packageFrequencyName": "Sample Text Data", "packageCurrencyId": 16, "packageCurrencyName": "Sample Text Data", "created": "2021-04-26T15:25:27.587Z", "updated": "2021-04-26T15:25:27.587Z", "priceBookId": 24, "priceBookName": "Sample Text Data" } } |