TAG LINE
TAG LINE
SMALL TITLE

Price Book Region

(API Version v7)


What can you do with PriceBookRegion?


Properties

Property Details
identity
READ-ONLY
"identity": 13
Type: Number
This is the unique numeric identifier for the PriceBookRegion
ownerId
READ-ONLY
"ownerId": 27
Type: Number
Unique identifier for the associated Owner object.
ownerName
READ-ONLY
"ownerName": "Sample Name"
Type: String
The name of the object associated with the ownerId property.
name
"name": "Hello World"
Type: String
description
"description": "Hello World"
Type: String
isActive
"isActive": true
Type: Boolean
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.


Patch Types

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. Below you will find the child objects that can be updated as part of PATCH operations for the PriceBookRegion object.

Standard PATCH objects:

  • priceBookRegionCountry - create, update, delete

DataFlow PATCH objects:

  • priceBookRegion - create, update, delete
  • priceBookRegionCountry - create, update, delete

End Points

DELETEPriceBook/Region/{id}
Delete an instance of the PriceBookRegion object. Upon successful delete, this API will return a record of all of the related objects deleted with this operation. The specifics on which objects have been deleted will depend on which related objects have been populated in the system.
{id}Unique identifier for the PriceBookRegion object.
Delete an instance of the PriceBookRegion object.
DELETE PriceBook/Region/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "delete",
    "results": {
        "totalCount": 4,
        "items": [
            {
                "identity": 1,
                "action": "deleted",
                "dtoTypeKey": "priceBookRegion"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETPriceBook/Region/
Retrieve all of the PriceBookRegion objects.
Retrieve all of the PriceBookRegion objects.
GET PriceBook/Region/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "ownerId": 8,
            "ownerName": "Sample Text Data",
            "name": "Sample Text Data",
            "description": "Sample Text Data",
            "isActive": true,
            "created": "2021-04-26T15:25:27.587Z"
        }
    ]
}
GETPriceBook/Region/Paged
Retrieve all of the PriceBookRegion 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 PriceBookRegion objects in a paged fashion.
GET PriceBook/Region/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,
                "ownerId": 25,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data",
                "isActive": true,
                "created": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}
GETPriceBook/Region/Paged/Detail
Retrieve all of the PriceBookRegion objects in a paged fashion with all object details. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
Retrieve all of the PriceBookRegion objects in a paged fashion with all object details.
GET PriceBook/Region/Paged/Detail
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,
                "ownerId": 16,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data",
                "isActive": true,
                "created": "2021-04-26T15:25:27.587Z",
                "details": {
                    "countries": [
                        {
                            "identity": 45,
                            "name": "Sample Text Data",
                            "sortOrder": 70,
                            "countryAddressFormatId": 23,
                            "countryAddressFormatName": "Sample Text Data",
                            "countryCode": "Sample Text Data",
                            "isVisible": true
                        }
                    ]
                }
            }
        ]
    }
}
GETPriceBook/Region/{id}
Retrieve an instance of the PriceBookRegion object by its ID.
{id}Unique identifier for the PriceBookRegion object.
Retrieve an instance of the PriceBookRegion object by its ID.
GET PriceBook/Region/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 18,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "description": "Sample Text Data",
        "isActive": true,
        "created": "2021-04-26T15:25:27.587Z"
    }
}
GETPriceBook/Region/{id}/Detail
Retrieve deep detail of the PriceBookRegion object by its ID. This endpoint returns additional detailed data related to this object. The specifics on which data is returned will depend on which related objects have been populated in the system.
{id}Unique identifier for the PriceBookRegion object.
Retrieve deep detail of the PriceBookRegion object by its ID.
GET PriceBook/Region/{id}/Detail
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "ownerId": 0,
        "ownerName": "Sample Text Data",
        "name": "Sample Text Data",
        "description": "Sample Text Data",
        "isActive": true,
        "created": "2021-04-26T15:25:27.587Z",
        "details": {
            "countries": [
                {
                    "identity": 45,
                    "name": "Sample Text Data",
                    "sortOrder": 70,
                    "countryAddressFormatId": 23,
                    "countryAddressFormatName": "Sample Text Data",
                    "countryCode": "Sample Text Data",
                    "isVisible": true
                }
            ]
        }
    }
}
PATCHPriceBook/Region/{id}
Update or Add the PriceBookRegion object and optionally make changes to any child objects. Patch end points allow for adding/updating multiple related entities and the results of those changes will be reported in the response JSON payload in the items array.
{id}Unique identifier for the PriceBookRegion object.
Update or Add the PriceBookRegion object and optionally make changes to any child objects.
PATCH PriceBook/Region/{id}

{
    "details": {},
    "priceBookRegions": {
        "items": [
            {
                "patchType": "create",
                "patchClientId": 1,
                "name": "Sample Text Data",
                "description": "Sample Text Data",
                "isActive": true
            }
        ]
    }
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "patch",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "action": "created",
                "dtoTypeKey": "priceBookRegion",
                "instance": {
                    "identity": 1,
                    "ownerId": 7,
                    "ownerName": "Sample Text Data",
                    "name": "Sample Text Data",
                    "description": "Sample Text Data",
                    "isActive": true,
                    "created": "2021-04-26T15:25:27.587Z"
                }
            }
        ]
    }
}
POSTPriceBook/Region/
Create a new instance of the PriceBookRegion object.
Create a new instance of the PriceBookRegion object.
POST PriceBook/Region/

{
    "name": "Sample Text Data",
    "description": "Sample Text Data",
    "isActive": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 18,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data",
                "isActive": true,
                "created": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}
PUTPriceBook/Region/{id}
Update an existing instance of the PriceBookRegion object.
Update an existing instance of the PriceBookRegion object.
PUT PriceBook/Region/{id}

{
    "identity": 1,
    "name": "Sample Text Data",
    "description": "Sample Text Data",
    "isActive": true
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "ownerId": 7,
                "ownerName": "Sample Text Data",
                "name": "Sample Text Data",
                "description": "Sample Text Data",
                "isActive": true,
                "created": "2021-04-26T15:25:27.587Z"
            }
        ]
    }
}