chore(docs): Generated API Reference (#3211)
Co-authored-by: olivermrbl <olivermrbl@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
9997485c55
commit
14b2de94e2
11
docs/api/admin/code_samples/JavaScript/notes/post.js
Normal file
11
docs/api/admin/code_samples/JavaScript/notes/post.js
Normal file
@@ -0,0 +1,11 @@
|
||||
import Medusa from "@medusajs/medusa-js"
|
||||
const medusa = new Medusa({ baseUrl: MEDUSA_BACKEND_URL, maxRetries: 3 })
|
||||
// must be previously logged in or use api token
|
||||
medusa.admin.notes.create({
|
||||
resource_id,
|
||||
resource_type: 'order',
|
||||
value: 'We delivered this order'
|
||||
})
|
||||
.then(({ note }) => {
|
||||
console.log(note.id);
|
||||
});
|
||||
Reference in New Issue
Block a user