Skip to content

Orbit API client for Node.js. API support for activity operations.

License

Notifications You must be signed in to change notification settings

li-clement/js-orbit-activities

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Orbit Activities Helper Library for Node.js

Build Status npm version Contributor Covenant

Orbit API helper library for Node.js.
This client can create, read, update and delete activities in your Orbit workspace.

Orbit

Installation

npm install @orbit-love/activities

Constructor

const OrbitActivities = require('@orbit-love/activities')
const orbitActivities = new OrbitActivities(orbitWorkspaceId, orbitApiKey)
  • orbitWorkspaceId - The part of your Orbit workspace URL that immediately follows the app.orbit.love. For example, if the URL was https://app.orbit.love/my-workspace, then your Orbit workspace ID is my-workspace.
  • orbitApiKey - This can be found in you Orbit Account Settings.

Initializing with environment variables

If you have the environment variables ORBIT_WORKSPACE_ID and ORBIT_API_KEY set, you can initialize the client like so:

const OrbitActivities = require('@orbit-love/activities')
const orbitActivities = new OrbitActivities()

If you have environment variables set and also pass in values, the passed in values will be used.

Rate Limits & Page Sizes

Methods

listWorkspaceActivities(options)
const options = {
    page: 1,
    items: 50,
    company: 'ACME Corp'
}

orbitActivities.listWorkspaceActivities(options).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

options is not a required parameter, but can be any query parameter shown in our API reference.

List activities for a workspace API reference.

listMemberActivities(memberId, options)
const memberId = 'janesmith04'

const options = {
    page: 1,
    items: 50
}

orbitActivities.listMemberActivities(memberId, options).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

options is not a required parameter, but can be any query parameter shown in our API reference.

List activities for a member API reference.

getActivity(activityId)
const activityId = '1234536'

orbitActivities.getActivity(activityId).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

Get an activity in the workspace API reference.

createActivity(memberId, data) or createActivity(data)

If you know the memberId for the member you want to add the activity to:

const memberId = 'janesmith04'

const data = {
    activity_type: 'starfleet:signup',
    title: "New Planet Signed Up for Starfleet",
    description: "Klingon has joined Starfleet via Twitter",
    member: {
        tshirt: 'XL',
        twitter: 'qunnoq'
    }
}

orbitActivities.createActivity(memberId, data).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

data should match the body params as shown in the Create a post activity for a member API reference.

If you know one or more identities of the member (github, email, twitter, etc.) but not their Orbit ID:

const data = {
    activity_type: 'starfleet:signup',
    title: "New Planet Signed Up for Starfleet",
    description: "Klingon has joined Starfleet via Twitter",
    member: {
        tshirt: 'XL',
        twitter: 'qunnoq'
    }
}

orbitActivities.createActivity(data).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

data should match the body params as shown in the Create an activity for a new or existing member API reference.

updateActivity(memberId, activityId, data)
const memberId = 'janesmith04'
const activityId = '1234356'
const data: {
    description: 'New description'
}

orbitActivities.updateActivity(memberId, activityId, data).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

data should match the body params as shown in the Update a custom activity for a member API reference.

deleteActivity(memberId, activityId)
const memberId = 'janesmith04'
const activityId = '1234356'

orbitActivities.deleteActivity(memberId, activityId).then(data => {
    console.log(data)
}).catch(error => {
    console.error(error)
})

Delete a post activity API reference.

Contributing

We 💜 contributions from everyone! Check out the Contributing Guidelines for more information.

License

This is available as open source under the terms of the MIT License.

Code of Conduct

This project uses the Contributor Code of Conduct. We ask everyone to please adhere by its guidelines.

About

Orbit API client for Node.js. API support for activity operations.

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%