Imagery
List imagery intervals
Imago API
Version: 1.4.3
Searches for a list of imageries matching a search criteria. For compatibility reasons, the verbose parameter must be set to true to get all defined response fields.
| Servers |
|---|
| https://imago.api.seequent.com/integrate/2 |
Parameters
Returns
200
Successful response.
Endpoint
GET
/imageryRequest
cURL
curl -X GET 'https://imago.api.seequent.com/integrate/2/imagery' \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
Response
{
"imageries": [
{
"id": "e2f26f0d-51c8-468e-b02f-29b4dc2217a2",
"collectionId": "054bf4c2-84cc-4d30-b4dc-cc81c77b7f25",
"imageryTypeId": "6a69bf8e-c03c-4ed2-8a62-d6feac838f12",
"workspaceId": "a27b51bf-b918-4fb4-a28f-4f089bf646a8",
"workspaceName": "Firefly Resource Development",
"datasetId": "71b93d30-8e5f-4b07-9f08-8e6bf5a72a50",
"datasetName": "Drilling Chips",
"collectionName": "RC-01001",
"imageryTypeName": "Chips",
"startDepth": 5,
"endDepth": 15,
"updatedAt": "2011-10-05T14:48:00.000Z",
"images": [
{
"id": "87a703c2-9bb4-4e56-951d-be293fb71692",
"imageTypeId": "f16c5dbe-f455-4076-8358-ffda8f538814",
"url": "https://imago.api.seequent.com/integrate/2/image/b91119e8-cee5-4c11-ad14-fe1dcb0c1c66/?userId=34a3f4ae-d53c-43d4-8545-a552c2a24c54&start=2025-04-23T03:59:36.499Z&expiry=2025-04-23T15:59:36.499Z&sig=4284b5576fffd3ebb94740025415aa2138d514139c5c61c5ef0b7af912da3fb8",
"uploadedOn": "2022-05-02T06:25:32.085Z",
"uploadedBy": "ImagoLive",
"mimeType": "image/jpeg",
"fileSize": "40192",
"width": null,
"height": null,
"checksum": "x7Rpt+5ET3C3vQataO7tEA==",
"imageTypeName": "Wet",
"updatedAt": "2011-10-05T14:48:00.000Z"
}
],
"attributeDefinitions": [
{
"name": "Core Tray Box Numbers",
"attributes": {
"StartBox": 2,
"EndBox": 2
}
}
],
"featureDefinitions": [
{
"name": "Linearization",
"featureTypes": [
{
"name": "row",
"images": [
{
"name": "Wet Original",
"features": [
{
"points": [
{
"x": 0.007876626215875149,
"y": 0.3148634731769562,
"pen": 0
},
{
"x": 0.9640294909477234,
"y": 0.3148634731769562,
"pen": 1
},
{
"x": 0.9640294909477234,
"y": 0.7148634731769562,
"pen": 1
},
{
"x": 0.00787662621587514,
"y": 0.7148634731769562,
"pen": -1
}
]
}
]
}
]
}
]
}
]
}
],
"meta": {
"limit": 50,
"offset": 0
}
}
Update an Imagery interval
Imago API
Version: 1.4.3
Update an imagery attributes and identification.
| Servers |
|---|
| https://imago.api.seequent.com/integrate/2 |
Parameters
[
{
"keys": {
"workspaceName": "Firefly Resource Development",
"datasetName": "Drilling Chips",
"collectionName": "RC-01001",
"imageryTypeName": "Chips",
"startDepth": 0,
"endDepth": 10
},
"startDepth": 5,
"endDepth": 15,
"attributeDefinitions": [
{
"name": "Core Tray Box Numbers",
"attributeValues": {
"StartBox": 2,
"EndBox": 2
}
}
],
"featureDefinitions": [
{
"name": "Linearization",
"featureTypes": [
{
"name": "row",
"images": [
{
"name": "Wet Original",
"features": [
{
"points": [
{
"x": 0.007876626215875149,
"y": 0.3148634731769562,
"pen": 0
},
{
"x": 0.9640294909477234,
"y": 0.3148634731769562,
"pen": 1
},
{
"x": 0.9640294909477234,
"y": 0.7148634731769562,
"pen": 1
},
{
"x": 0.00787662621587514,
"y": 0.7148634731769562,
"pen": -1
}
]
}
]
}
]
}
]
}
]
}
]
Returns
200
Successful response.
Endpoint
PUT
/imageryRequest
cURL
curl -X PUT 'https://imago.api.seequent.com/integrate/2/imagery' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Content-Type: application/json' \
-d '[
{
"keys": {
"workspaceName": "Firefly Resource Development",
"datasetName": "Drilling Chips",
"collectionName": "RC-01001",
"imageryTypeName": "Chips",
"startDepth": 0,
"endDepth": 10
},
"startDepth": 5,
"endDepth": 15,
"attributeDefinitions": [
{
"name": "Core Tray Box Numbers",
"attributeValues": {
"StartBox": 2,
"EndBox": 2
}
}
],
"featureDefinitions": [
{
"name": "Linearization",
"featureTypes": [
{
"name": "row",
"images": [
{
"name": "Wet Original",
"features": [
{
"points": [
{
"x": 0.007876626215875149,
"y": 0.3148634731769562,
"pen": 0
},
{
"x": 0.9640294909477234,
"y": 0.3148634731769562,
"pen": 1
},
{
"x": 0.9640294909477234,
"y": 0.7148634731769562,
"pen": 1
},
{
"x": 0.00787662621587514,
"y": 0.7148634731769562,
"pen": -1
}
]
}
]
}
]
}
]
}
]
}
]'
Response
No response body.
Create an Imagery interval
Imago API
Version: 1.4.3
This will create a new imagery if it does not exist, otherwise it will update an existing imagery.
| Servers |
|---|
| https://imago.api.seequent.com/integrate/2 |
Parameters
[
{
"keys": {
"workspaceName": "Firefly Resource Development",
"datasetName": "Drilling Chips",
"collectionName": "RC-01001",
"imageryTypeName": "Chips",
"startDepth": 0,
"endDepth": 10
},
"attributeDefinitions": [
{
"name": "Core Tray Box Numbers",
"attributeValues": {
"StartBox": 1,
"EndBox": 1
}
}
],
"featureDefinitions": [
{
"name": "Linearization",
"featureTypes": [
{
"name": "row",
"images": [
{
"name": "Wet Original",
"features": [
{
"points": [
{
"x": 0.007876626215875149,
"y": 0.3148634731769562,
"pen": 0
},
{
"x": 0.9640294909477234,
"y": 0.3148634731769562,
"pen": 1
},
{
"x": 0.9640294909477234,
"y": 0.7148634731769562,
"pen": 1
},
{
"x": 0.00787662621587514,
"y": 0.7148634731769562,
"pen": -1
}
]
}
]
}
]
}
]
}
]
}
]
Returns
200
Successful response.
Endpoint
POST
/imageryRequest
cURL
curl -X POST 'https://imago.api.seequent.com/integrate/2/imagery' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Content-Type: application/json' \
-d '[
{
"keys": {
"workspaceName": "Firefly Resource Development",
"datasetName": "Drilling Chips",
"collectionName": "RC-01001",
"imageryTypeName": "Chips",
"startDepth": 0,
"endDepth": 10
},
"attributeDefinitions": [
{
"name": "Core Tray Box Numbers",
"attributeValues": {
"StartBox": 1,
"EndBox": 1
}
}
],
"featureDefinitions": [
{
"name": "Linearization",
"featureTypes": [
{
"name": "row",
"images": [
{
"name": "Wet Original",
"features": [
{
"points": [
{
"x": 0.007876626215875149,
"y": 0.3148634731769562,
"pen": 0
},
{
"x": 0.9640294909477234,
"y": 0.3148634731769562,
"pen": 1
},
{
"x": 0.9640294909477234,
"y": 0.7148634731769562,
"pen": 1
},
{
"x": 0.00787662621587514,
"y": 0.7148634731769562,
"pen": -1
}
]
}
]
}
]
}
]
}
]
}
]'
Response
No response body.
Delete an imagery interval
Imago API
Version: 1.4.3
Deletes an imagery based on the provided imagery ID.
| Servers |
|---|
| https://imago.api.seequent.com/integrate/2 |
Parameters
Returns
204
The imagery was successfully deleted.
Endpoint
DELETE
/imagery/{imageryid}Request
cURL
curl -X DELETE 'https://imago.api.seequent.com/integrate/2/imagery/{imageryid}' \
-H 'Authorization: Bearer <ACCESS_TOKEN>'
Response
No response body.