TAG LINE
TAG LINE
SMALL TITLE

Package / Frequency / Package Currency

(API Version v6)


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": 0
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": 9
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": 20
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
"updated": "2021-04-26T15:25:27.587Z"
Type: Date
Date and time values are specified in the ISO 8601 format.
priceBookId
"priceBookId": 21
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": 10,
            "packageFrequencyName": "Sample Text Data",
            "packageCurrencyId": 17,
            "packageCurrencyName": "Sample Text Data",
            "created": "2021-04-26T15:25:27.587Z",
            "updated": "2021-04-26T15:25:27.587Z",
            "priceBookId": 24,
            "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": 5,
                "packageFrequencyName": "Sample Text Data",
                "packageCurrencyId": 19,
                "packageCurrencyName": "Sample Text Data",
                "created": "2021-04-26T15:25:27.587Z",
                "updated": "2021-04-26T15:25:27.587Z",
                "priceBookId": 4,
                "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": 15,
        "packageFrequencyName": "Sample Text Data",
        "packageCurrencyId": 24,
        "packageCurrencyName": "Sample Text Data",
        "created": "2021-04-26T15:25:27.587Z",
        "updated": "2021-04-26T15:25:27.587Z",
        "priceBookId": 20,
        "priceBookName": "Sample Text Data"
    }
}