Authentication
- Credentials:
usernameandpasswordusing Basic Auth - Runtime base URL:
https://energydataservices.ci.spglobal.com/data/v1 - Source Swagger: energydataservices.ihsenergy.com/data/swagger/v1/swagger.json
User-facing reference for the Swagger-backed IHS connector in PatchOps: authentication, surface area, tool selection, and the fastest path from discovery to data retrieval.
username and password using Basic Authhttps://energydataservices.ci.spglobal.com/data/v1listOperationsdescribeOperationrequestlistDomainslistViewsgetViewSchemaretrievecountgetSessionsdeleteSessionsgetReportsgetImage// 1) Discover the published surface
await ihs.listOperations({ text: "Upstream Intelligence" });
// 2) Inspect one operation before calling it
await ihs.describeOperation({
operationId: "GlobalUpstreamIntelligence_GetDocuments"
});
// 3) Call any published operation directly
await ihs.request({
operationId: "GlobalUpstreamIntelligence_GetDocuments",
query: { "$count": 10 }
});
// 4) Use helpers for catalog-style data domains
await ihs.listViews({ domain: "northamerica/midstream" });
await ihs.retrieve({
domain: "adm/eandp",
view: "Wells",
filter: "country_name eq 'Brazil'",
count: 25
});