const rows = await client.sequences.retrieveRows({ externalId: 'sequence1' }).autoPagingToArray({ limit: 100 });{
"id": 1112,
"externalId": "DL/DRILL412/20190103/T3",
"columns": [
{
"externalId": "Depth"
},
{
"externalId": "DepthSource"
},
{
"externalId": "PowerSetting"
}
],
"rows": [
{
"rowNumber": 1,
"values": [
23331.3,
"s2",
61
]
}
]
}Required capabilities:
sequencesAcl:READ
Processes data requests and returns the result. Note that this operation uses a dynamic limit on the number of rows returned based on the number and type of columns; use the provided cursor to paginate and retrieve all data.
const rows = await client.sequences.retrieveRows({ externalId: 'sequence1' }).autoPagingToArray({ limit: 100 });{
"id": 1112,
"externalId": "DL/DRILL412/20190103/T3",
"columns": [
{
"externalId": "Depth"
},
{
"externalId": "DepthSource"
},
{
"externalId": "PowerSetting"
}
],
"rows": [
{
"rowNumber": 1,
"values": [
23331.3,
"s2",
61
]
}
]
}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
Description of data requested.
A request for datapoints stored.
A server-generated ID for the object.
1 <= x <= 9007199254740991Lowest row number included.
Get rows up to, but excluding, this row number. Default - No limit.
1
Maximum number of rows returned in one request. API might return less even if there's more data, but it will provide a cursor for continuation. If there's more data beyond this limit, a cursor will be returned to simplify further fetching of data.
1 <= x <= 100001
Cursor for pagination returned from a previous request. Apart from this cursor, the rest of the request object is the same as for the original request.
Columns to include. Specified as a list of the externalId of each column to include.
If this filter isn't set, all available columns will be returned.
1 - 400 elementsResponse with the sequence data found.
Data from a sequence.
A server-generated ID for the object.
1 <= x <= 9007199254740991Column information in the order given by data.
Show child attributes
List of row information.
Show child attributes
The external ID provided by the client. Must be unique for the resource type.
255"my.known.id"
Cursor to get the next page of results (if available).
Was this page helpful?