
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Unofficial Segment.io Management node.js SDK (the scrapy way)
First you need node.js installed and then in your project directory:
$ npm install segmentum --save
Create myapp.js
file with this content:
const Segmentum = require ('segmentum');
const manage = new Segmentum({
email: 'myemail@example.com',
password: 'mypassword'
});
manage.login().then((data) => {
console.log(data);
});
Then run your script:
$ node myapp.js
{ id: 'xxxxxxx',
created: '2017-02-20T23:24:34.939Z',
activated: null,
isAdmin: false,
name: 'Jose Perez',
lastSeen: '2017-02-20T23:24:34.939Z',
email: 'myemail@example.com',
tags: {},
salesforce: null,
features: null }
manage.updateSource(workspaceSlug, sourceType, sourceSlug, data)
manage.setIntegration(workspaceSlug, sourceSlug, integrationName, integrationSlug, data)
options
is the client connection options.
email
: is the email used in the web to login. required.password
: is the password used in the web to login. required.Return a manage
object
Return a promise that resolve to:
{
"id": "xxxxxxx",
"created": "2017-02-20T23:24:34.939Z",
"activated": null,
"isAdmin": false,
"name": "Jose Perez",
"lastSeen": "2017-02-20T23:24:34.939Z",
"email": "myemail@example.com",
"tags": {},
"salesforce": null,
"features": null
}
You need to call this before other methods to make sure you are logged in. Re-login is automaticaly handled if you call a method and your session is expired.
Return a promise that resolve to an Array of workspaces:
[
{
"id": "xxxxxxxxx",
"version": 2,
"created": "2017-02-20T23:24:35.365Z",
"slug": "test344",
"name": "Workspace Name1",
"salesforce": null,
"owners": [
"xxxxxxxx"
],
"features": null,
"readKeys": [
"read-123123-123123-1232-1232-123123123"
],
"environment": null,
"ids": null
},
{
"id": "yyyyyyy",
"version": 2,
"created": "2017-02-21T12:59:20.221Z",
"slug": "test345",
"name": "test345",
"salesforce": null,
"owners": [
"xxxxxxxx"
],
"features": null,
"readKeys": [
"read-123123-123123-1232-1232-123123123"
],
"environment": null,
"ids": null
}
]
data
is the require object data to create a workspace.
name
: Workspace name requiredslug
: Slug url requiredbilling
: Object required
email
: Manager Email address requiredReturn a promise that resolve to:
{
"id": "xxxxxxxxx",
"version": 2,
"created": "2017-02-21T12:59:49.619Z",
"slug": "test344",
"name": "test344",
"salesforce": null,
"owners": [
"yyyyyyyy"
],
"features": null,
"readKeys": [
"read-123123-123123-1232-1232-123123123"
],
"environment": null,
"ids": null
}
name
: Workspace name requiredReturn a promise that resolve to:
HTTP 203 - Non-authoritative Information
Return a promise that resolve to an Array of available Sources or a specific source object if sourceSlug
is provided.
[
{
"id": "VOXa199Bdm",
"name": "Marketo",
"slug": "marketo",
"createdAt": "2016-07-15T20:54:11.552Z",
"type": "third-party",
"website": "",
"frequency": 10800,
"description": "",
"categories": [
"cloud apps"
],
"subtitle": null,
"auth": {
"requiredOptions": "Object"
},
"schema": null,
"options": {
"activity-type-ids": "Object",
"client-id": "Object",
"client-secret": "Object",
"custom-lead-fields": "Object",
"daily-limit": "Object",
"munchkin_id": "Object"
},
"logos": {
"alt": "https://cdn.filepicker.io/api/file/sCEWxuXKTAGZpPmps8sn",
"default": "https://cdn.filepicker.io/api/file/sCEWxuXKTAGZpPmps8sn"
},
"webhook": null,
"visibility": "beta",
"tags": null,
"environment": null,
"docs": "",
"github": "",
"publicInfo": {
"featuredData": "Object",
"requiredInfo": null,
"destinations": "Object",
"code": "Not required",
"useCases": "Object",
"tagline": "",
"links": null
},
"category": "cloud apps",
"owners": null,
"features": null,
"allowed_workspace_ids": null,
"oauth": false
}
]
workspaceSlug
is the Workspace slug when you want to create a new sourcesourceType
is the source typedata
Object
sourceId
: The source ID you get with getSourceMetadata()
. required.name
: a Name for the new source required.slug
: a slug url for the new source required.enabled
: Boolean required.Return a promise that resolve to:
{
"id": "tttttttt",
"created": "2017-02-21T13:26:28.951007525Z",
"createdBy": "",
"url": null,
"slug": "newslug",
"workspaceId": "gggggggg",
"lastSeen": "0001-01-01T00:00:00Z",
"collaborators": null,
"readKeys": [
"123123123123123123123123123"
],
"writeKeys": [
"34534534534534534534535345345"
],
"plan": null,
"timezone": "America/Los_Angeles",
"name": "newname",
"sourceId": "U9mT0bPcI6",
"enabled": true,
"settings": {},
"advancedSync": null
}
Uses a PATCH
request under the hood. This means the data can only contain
the desired changes.
workspaceSlug
is the Workspace slug where you want to edit the sourcesourceType
is the source typesourceSlug
: slug of the source to updatedata
Object
name
: a new name for the source.enabled
: Boolean.{
"id": "tttttttt",
"created": "2017-02-21T13:26:28.951007525Z",
"createdBy": "",
"url": null,
"slug": "newslug",
"workspaceId": "gggggggg",
"lastSeen": "0001-01-01T00:00:00Z",
"collaborators": [],
"readKeys": [
"123123123123123123123123123"
],
"writeKeys": [
"34534534534534534534535345345"
],
"timezone": "America/Los_Angeles",
"name": "changedName",
"sourceId": "sourceID",
"enabled": true,
"settings": null,
"advancedSync": null,
"workspace": {
"id": "tttttttt",
"created": "2017-02-21T13:26:28.951007525Z",
"slug": "workspace-slug",
"name": "WorkspaceSlug",
"salesforce": null,
"owners": [
"xxxxxxxx"
],
"features": null,
"readKeys": [
"123123123123123123123123123"
],
"environment": null,
"ids": null
},
"hasSentData": true,
"integrations": []
}
Return a promise that resolve to an array of your sources for the workspaceSlug
provided.
[
{
"id": "xxxxxxx",
"version": 2,
"created": "2017-02-21T13:26:28.951Z",
"createdBy": "",
"url": null,
"slug": "newslug",
"workspaceId": "yyyyyyyyy",
"lastSeen": "0001-01-01T00:00:00Z",
"collaborators": null,
"readKeys": [
"1231231231231231231231231231"
],
"writeKeys": [
"345345345345345345345353453451"
],
"plan": null,
"timezone": "America/Los_Angeles",
"name": "newname",
"sourceId": "U9mT0bPcI6",
"enabled": true,
"settings": null,
"advancedSync": null
},
{
"id": "zzzzzzzz",
"version": 2,
"created": "2017-02-21T02:52:53.499Z",
"createdBy": "",
"url": null,
"slug": "nodejs",
"workspaceId": "yyyyyyy",
"lastSeen": "0001-01-01T00:00:00Z",
"collaborators": null,
"readKeys": [
"1231231231231231231231231232"
],
"writeKeys": [
"345345345345345345345353453452"
],
"plan": null,
"timezone": "America/Los_Angeles",
"name": "Nodejs",
"sourceId": "U9mT0bPcI6",
"enabled": true,
"settings": null,
"advancedSync": null
}
]
Return a promise that resolve to a source object in the workspaceSlug
provided.
{
"id": "tttttttt",
"created": "2017-02-21T13:26:28.951007525Z",
"createdBy": "",
"url": null,
"slug": "newslug",
"workspaceId": "gggggggg",
"lastSeen": "0001-01-01T00:00:00Z",
"collaborators": [],
"readKeys": [
"123123123123123123123123123"
],
"writeKeys": [
"34534534534534534534535345345"
],
"timezone": "America/Los_Angeles",
"name": "changedName",
"sourceId": "sourceID",
"enabled": true,
"settings": null,
"advancedSync": null,
"workspace": {
"id": "tttttttt",
"created": "2017-02-21T13:26:28.951007525Z",
"slug": "workspace-slug",
"name": "WorkspaceSlug",
"salesforce": null,
"owners": [
"xxxxxxxx"
],
"features": null,
"readKeys": [
"123123123123123123123123123"
],
"environment": null,
"ids": null
},
"hasSentData": true,
"integrations": []
}
workspaceSlug
: workspace slugsourceSlug
: slug of the source to deleteReturn a promise that resolve to:
HTTP 203 - Non-authoritative Information
Return a promise that resolve to an Array of available Integrations or a specific integration object if integrationSlug
is provided.
[
{
"name": "Gauges",
"slug": "gauges",
"version": "",
"createdAt": "2013-01-14T03:00:46Z",
"note": "",
"website": "http://gaug.es",
"description": "Gauges is a simple, friendly analytics tool that is perfect for the basic tracking needs of small projects or personal blogs. And all of it's data is queried in real-time.",
"level": 1,
"categories": [
"Analytics",
"Realtime Dashboards"
],
"platforms": {
"browser": true,
"mobile": false,
"server": false
},
"methods": {
"alias": false,
"group": false,
"identify": false,
"pageview": true,
"track": false
},
"basicOptions": [
"siteId"
],
"advancedOptions": [],
"options": {
"siteId": "Object"
},
"public": true,
"redshift": false,
"logos": {
"default": "https://d3hotuclm6if1r.cloudfront.net/logos/gauges-default.png"
},
"components": [
"Object"
],
"owners": null,
"replaySupported": false,
"browserUnbundlingSupported": null,
"minimumBrowserUnbundlingVersion": null,
"browserUnbundlingChangelog": null,
"browserUnbundlingIntegrationChangelog": null
}
]
worskpaceSlug
slug of the workspace.sourceSlug
slug of the source. Use getSourceMetadata
to retrieve it.integrationName
name of the integration. Use getIntegrationMetadata
to retrieve it.integrationSlug
slug of the integration.data
enabled
Booleansettings
Object. Use getIntegrationMetadata
to retrieve allowed options for the integration.workspaceSlug
slug of the workspace.sourceSlug
slug of the source. Use getSourceMetadata
to retrieve it.[
{
"id":"PWHyG2912i",
"version":"v1",
"created":"2017-04-12T23:01:58.583Z",
"enabled":true,
"project":"OsUhSeiN81",
"settings":{
"apiKey":"xxxxxxxxxxxxx",
"apiSecret":"xxxxxxxxxxxx",
"direct":false,
"endpoint":"https://segment.app-us1.com/in.php"
},
"encryptedSettings":null,
"type":"ActiveCampaign",
"key":"s3B2OhulRD",
"components":{
"browser":{
"disabled":false
}
},
"projects":null
},
{
"id":"yWPvBuo4rA",
"version":"v1",
"created":"2017-04-12T21:38:41.814Z",
"enabled":false,
"project":"OsUhSeiN81",
"settings":{
"anonymizeIp":false,
"classic":false,
"contentGroupings":{},
"dimensions":{},
"domain":"",
"doubleClick":false,
"enhancedEcommerce":false,
"enhancedLinkAttribution":false,
"ignoredReferrers":[],
"includeSearch":false,
"metrics":{},
"mobileTrackingId":"",
"nonInteraction":false,
"optimize":"",
"reportUncaughtExceptions":false,
"sampleRate":100,
"sendUserId":false,
"serversideClassic":false,
"serversideTrackingId":"UA-XXXXXXXX-X",
"siteSpeedSampleRate":1,
"trackCategorizedPages":true,
"trackNamedPages":true,
"trackingId":""
},
"encryptedSettings":null,
"type":"Google Analytics",
"key":"WRSRaDGXiw",
"components":null,
"projects":null
}
]
Returns all integrations configured for the given workspace, slug pair.
Return a promise that resolve to an Array of available BitTools or a specific BitTool object if bitToolSlug
is provided.
[
{
"id": "ywKtSk10Th",
"name": "BIME Analytics",
"slug": "bime-analytics",
"logo": "https://d3hotuclm6if1r.cloudfront.net/logos/bime-default.svg",
"popularity": 0,
"freeTrial": true,
"website": "https://www.bimeanalytics.com/?utm_source=partnersegment&utm_medium=product&utm_campaign=sources",
"createdAt": "2016-03-29T01:18:19.978Z",
"description": "BIME helps you analyze and visualize the customer data you collect with Segment. Combine data, perform analysis, and share dashboards on the metrics you care about—no SQL required.",
"tagline": "Analyze and visualize customer data from your website, product, database, and many other sources.",
"connectLink": "https://www.bimeanalytics.com/segment.html?utm_source=partnersegment&utm_medium=product&utm_campaign=sources",
"partnerLevel": "partner",
"categories": [
"business intelligence"
],
"tags": [
"Dashboards",
"Drag-and-drop",
"Sharing analysis",
"SQL",
"Quick set up"
],
"coupon": {
"code": "segment+bime",
"description": "1 month free on your Big Data plan annual contract."
},
"media": [
"Object",
"Object"
],
"owners": null
}
]
Return a promise that resolve to an Array of available Wherehouses or a specific Wherehouse object if wherehouseSlug
is provided.
[
{
"id": "aea3c55dsz",
"name": "Redshift",
"slug": "redshift",
"createdAt": "0001-01-01T00:00:00Z",
"description": "Powered by Amazon Web Services",
"frequency": 7200,
"public": true,
"options": {
"ciphertext": {},
"database": {},
"disable-extra-permissioning": "Object",
"hostname": {},
"password": {},
"port": {},
"username": {}
},
"logos": {
"default": "https://d3hotuclm6if1r.cloudfront.net/logos/redshift-default.svg"
}
}
]
workspaceSlug
: Workspace slugwarehouseId
: Id of the warehouse you want to connect with. Use getWarehouseMetadata().settings
username
: Database username.password
: Database password.host
: Database host.port
: Database portdatabase
: Database name.databaseId
: Type Id for the databaseReturn a promise that resolve to a billing count object for the workspaceSlug
provided.
{
"workspace_id": "xxxxxxx",
"period": "2017-02-01T00:00:00Z",
"counts": {
"anonymous": 0,
"users": 1
}
}
Return a promise that resolve to a billing object for the workspaceSlug
provided.
{
"workspaceId": "xxxxxxx",
"customerId": "cus_yyyyyyyyy",
"description": "",
"email": "memail@example.com",
"extraInfo": "",
"card": null,
"services": {},
"legacy": false,
"subscription": {
"id": "sub_uuuuuuuu",
"plan": {
"id": "developer",
"name": "Developer",
"amount": 0,
"interval": "month",
"description": "",
"level": 1,
"quota": "Object",
"version": 3
},
"quantity": 1,
"status": "active",
"trial": false,
"trialStart": null,
"trialEnd": null,
"periodStart": "2017-02-20T23:24:35Z",
"periodEnd": "2017-03-01T00:00:00Z",
"coupon": null
},
"quota": {
"trackedObjects": 1000
},
"usage": {
"trackedObjects": 1
},
"needsUpgrade": false,
"suggestedPlan": null
}
FAQs
Unofficial Segment.io Management node.js SDK
The npm package segmentum receives a total of 0 weekly downloads. As such, segmentum popularity was classified as not popular.
We found that segmentum demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.