Skip to content

Codebase and docs for https://getchamu.com interface, enabling unit creation, deletion, and updates.

License

Notifications You must be signed in to change notification settings

officialrobert/chamu-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

Chamu web API

Chamu makes it easy to manage and share your notes and files. With our API you can create, delete, and update notes by doing it from code. Store and format any information you'd like to track ranging from app errors down to acknowledgement or receipts. Visit our official website.

Initial setup

const ChamuAccessAPI = new ChamuAccess({ 
    key: 'Your private key'
});

const props = { 
    // required properties to create
};


ChamuAccessAPI.create({...props})

HTTP Request reference

Get note content and properties

  GET /api/v1/note/:noteId
Parameter Type Description
noteId string Required. Your API key
Header Type Description
Authorization string Required. Contains your API key
Response Type Description
noteKeyReference string Key reference
title string Note title
description json Body/description content

Get and create a note draft

  GET /api/v1/note/draft
Header Type Description
Authorization string Required. Contains your API key
Response Type Description
noteKeyReference string Key reference
title string Note title
description json Body/description content

Create new note

  POST /api/v1/note/create/:noteKeyReference
Parameter Type Description
noteKeyReference string Required. Key reference
Header Type Description
Authorization string Required. Contains your API key
Data Type Description
title string Required. Note title
description json Optional. Body/description content
Response Type Description
noteKeyReference string Key reference
noteId string Note id

Edit note

  POST /api/v1/note/edit/:noteKeyReference
Parameter Type Description
noteKeyReference string Required. Key reference
Header Type Description
Authorization string Required. Contains your API key
Data Type Description
title string Required. Note title
description json Optional. Body/description content

Delete a note

  DELETE /api/v1/note/:noteKeyReference
Parameter Type Description
noteKeyReference string Required. Key reference
Header Type Description
Authorization string Required. Contains your API key

About

Codebase and docs for https://getchamu.com interface, enabling unit creation, deletion, and updates.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published