TAG LINE
TAG LINE
SMALL TITLE

GeoTree / Location / Pattern

(API Version v6)


This entity represents a pattern to use on a mediated record to determine if it belongs to a Location. In telecom a good example of this is the area or country code.


What can you do with GeoTreeLocationPattern?


Properties

Property Details
identity
READ-ONLY
"identity": 6
Type: Number
This is the unique numeric identifier for the GeoTreeLocationPattern
name
"name": "Hello World"
Type: String
geoTreeLocationId
"geoTreeLocationId": 11
Type: Number
Unique identifier for the associated GeoTreeLocation object.
geoTreeLocationName
"geoTreeLocationName": "Sample Name"
Type: String
The name of the object associated with the geoTreeLocationId property.
country
"country": "US"
Type: String
User defined country name for the pattern.
state
"state": "CA"
Type: String
User defined state for the pattern.
city
"city": "LA"
Type: String
User defined city for the pattern
lata
"lata": "Hello World"
Type: String
Unused


End Points

DELETEGeoTree/Location/Pattern/{id}
Delete an instance of the GeoTreeLocationPattern 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 GeoTreeLocationPattern object.
Delete an instance of the GeoTreeLocationPattern object.
DELETE GeoTree/Location/Pattern/{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": "geoTreeLocationPattern"
            },
            {
                "lhsId": 2,
                "rhsId": 2,
                "action": "detached",
                "dtoTypeKey": "sampleObjectConnector"
            },
            {
                "foreignKeyIdentity": 2,
                "action": "deleted",
                "dtoTypeKey": "sampleObject"
            }
        ]
    }
}
GETGeoTree/Location/Pattern/
Retrieve all of the GeoTreeLocationPattern objects.
Retrieve all of the GeoTreeLocationPattern objects.
GET GeoTree/Location/Pattern/
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "totalCount": 1,
    "items": [
        {
            "identity": 1,
            "name": "Sample Text Data",
            "geoTreeLocationId": 19,
            "geoTreeLocationName": "Sample Text Data",
            "country": "US",
            "state": "CA",
            "city": "LA",
            "lata": "Sample Text Data"
        }
    ]
}
GETGeoTree/Location/Pattern/Paged
Retrieve all of the GeoTreeLocationPattern 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 GeoTreeLocationPattern objects in a paged fashion.
GET GeoTree/Location/Pattern/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,
                "name": "Sample Text Data",
                "geoTreeLocationId": 21,
                "geoTreeLocationName": "Sample Text Data",
                "country": "US",
                "state": "CA",
                "city": "LA",
                "lata": "Sample Text Data"
            }
        ]
    }
}
GETGeoTree/Location/Pattern/{id}
Retrieve an instance of the GeoTreeLocationPattern object by its ID.
{id}Unique identifier for the GeoTreeLocationPattern object.
Retrieve an instance of the GeoTreeLocationPattern object by its ID.
GET GeoTree/Location/Pattern/{id}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "instance": {
        "identity": 1,
        "name": "Sample Text Data",
        "geoTreeLocationId": 24,
        "geoTreeLocationName": "Sample Text Data",
        "country": "US",
        "state": "CA",
        "city": "LA",
        "lata": "Sample Text Data"
    }
}
POSTGeoTree/Location/Pattern/
Create a new instance of the GeoTreeLocationPattern object.
Create a new instance of the GeoTreeLocationPattern object.
POST GeoTree/Location/Pattern/

{
    "name": "Sample Text Data",
    "geoTreeLocationId": 8,
    "country": "US",
    "state": "CA",
    "city": "LA",
    "lata": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "create",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Sample Text Data",
                "geoTreeLocationId": 13,
                "geoTreeLocationName": "Sample Text Data",
                "country": "US",
                "state": "CA",
                "city": "LA",
                "lata": "Sample Text Data"
            }
        ]
    }
}
PUTGeoTree/Location/Pattern/{id}
Update an existing instance of the GeoTreeLocationPattern object.
Update an existing instance of the GeoTreeLocationPattern object.
PUT GeoTree/Location/Pattern/{id}

{
    "identity": 1,
    "name": "Sample Text Data",
    "geoTreeLocationId": 0,
    "country": "US",
    "state": "CA",
    "city": "LA",
    "lata": "Sample Text Data"
}
View Sample Response
HTTP/1.1 200 OK
{
    "trackingId": "d2ae5304-2355-44eb-a328-272f02935f8b",
    "type": "update",
    "results": {
        "totalCount": 1,
        "items": [
            {
                "identity": 1,
                "name": "Sample Text Data",
                "geoTreeLocationId": 19,
                "geoTreeLocationName": "Sample Text Data",
                "country": "US",
                "state": "CA",
                "city": "LA",
                "lata": "Sample Text Data"
            }
        ]
    }
}