TAG LINE
TAG LINE
SMALL TITLE

Account / Parent

(API Version v5)


This object represents the hierarchy connections between different accounts within the system.


What can you do with AccountParent?


Properties

Property Details
identity
READ-ONLY
"identity": 22
Type: Number
This is the unique numeric identifier for the AccountParent
accountId
"accountId": 19
Type: Number
Unique identifier for the associated Account object.
accountName
"accountName": "Sample Name"
Type: String
The name of the object associated with the accountId property.
parentAccountId
"parentAccountId": 0
Type: Number
Unique identifier for the associated Account object.
parentAccountName
"parentAccountName": "Sample Name"
Type: String
The name of the object associated with the parentAccountId property.
topAccountId
READ-ONLY
"topAccountId": 7
Type: Number
Unique identifier for the associated Account object.
topAccountName
READ-ONLY
"topAccountName": "Sample Name"
Type: String
The name of the object associated with the topAccountId property.


End Points

DELETEAccount/Parent/{id}
Delete an instance of the AccountParent object. Upon successful delete, this API will return a record of all of the reelated 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 AccountParent object.
Delete an instance of the AccountParent object.
DELETE Account/Parent/{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": "accountParent"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETAccount/Parent/
Retrieve all of the AccountParent objects.
Retrieve all of the AccountParent objects.
GET Account/Parent/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "accountId": 9,
            "accountName": "Sample Text Data",
            "parentAccountId": 3,
            "parentAccountName": "Sample Text Data",
            "topAccountId": 12,
            "topAccountName": "Sample Text Data"
        }
    ]
}
GETAccount/Parent/Paged
Retrieve all of the AccountParent 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 AccountParent objects in a paged fashion.
GET Account/Parent/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,
                "accountId": 26,
                "accountName": "Sample Text Data",
                "parentAccountId": 12,
                "parentAccountName": "Sample Text Data",
                "topAccountId": 2,
                "topAccountName": "Sample Text Data"
            }
        ]
    }
}
GETAccount/Parent/{id}
Retrieve an instance of the AccountParent object by its ID.
{id}Unique identifier for the AccountParent object.
Retrieve an instance of the AccountParent object by its ID.
GET Account/Parent/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "accountId": 8,
        "accountName": "Sample Text Data",
        "parentAccountId": 25,
        "parentAccountName": "Sample Text Data",
        "topAccountId": 3,
        "topAccountName": "Sample Text Data"
    }
}
POSTAccount/Parent/
Create a new instance of the AccountParent object.
Create a new instance of the AccountParent object.
POST Account/Parent/

{
    "accountId": 17,
    "parentAccountId": 24
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "accountId": 16,
                "accountName": "Sample Text Data",
                "parentAccountId": 5,
                "parentAccountName": "Sample Text Data",
                "topAccountId": 5,
                "topAccountName": "Sample Text Data"
            }
        ]
    }
}
PUTAccount/Parent/{id}
Update an existing instance of the AccountParent object.
Update an existing instance of the AccountParent object.
PUT Account/Parent/{id}

{
    "identity": 1,
    "accountId": 0,
    "parentAccountId": 13
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "accountId": 12,
                "accountName": "Sample Text Data",
                "parentAccountId": 14,
                "parentAccountName": "Sample Text Data",
                "topAccountId": 7,
                "topAccountName": "Sample Text Data"
            }
        ]
    }
}