TAG LINE
TAG LINE
SMALL TITLE

Package / Frequency / Package Currency

(API Version v7)


Represents a linking between a Package frequency and currency in which a Package can be sold.


What can you do with PackageFrequencyPackageCurrency?


Properties

Property Details
identity
READ-ONLY
"identity": 12
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": 18
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": 16
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": 20
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.


End Points

GETPackage/Frequency/Currency/
Retrieve all of the PackageFrequencyPackageCurrency objects.
Retrieve all of the PackageFrequencyPackageCurrency objects.
GET Package/Frequency/Currency/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "isActive": true,
            "packageFrequencyId": 8,
            "packageFrequencyName": "Sample Text Data",
            "packageCurrencyId": 7,
            "packageCurrencyName": "Sample Text Data",
            "created": "2021-04-26T15:25:27.587Z",
            "updated": "2021-04-26T15:25:27.587Z",
            "priceBookId": 0,
            "priceBookName": "Sample Text Data"
        }
    ]
}
GETPackage/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
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,
                "isActive": true,
                "packageFrequencyId": 1,
                "packageFrequencyName": "Sample Text Data",
                "packageCurrencyId": 6,
                "packageCurrencyName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "updated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 0,
                "priceBookName": "Sample Text Data"
            }
        ]
    }
}
GETPackage/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}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "isActive": true,
        "packageFrequencyId": 21,
        "packageFrequencyName": "Sample Text Data",
        "packageCurrencyId": 15,
        "packageCurrencyName": "Sample Text Data",
        "created": "2021-04-26T15:25:27.587Z",
        "updated": "2021-04-26T15:25:27.587Z",
        "priceBookId": 22,
        "priceBookName": "Sample Text Data"
    }
}