update api docs
This commit is contained in:
parent
928cc11663
commit
acee02f368
2 changed files with 12 additions and 12 deletions
|
@ -138,14 +138,14 @@ def addAnnotation(request, data):
|
|||
'''
|
||||
Adds a single annotation
|
||||
takes {
|
||||
item: string, (item id)
|
||||
layer: string, (annotation layer id)
|
||||
in: float,
|
||||
out: float,
|
||||
value: string
|
||||
item: string, // item id
|
||||
layer: string, // annotation layer id
|
||||
in: float, // in point in seconds
|
||||
out: float, // out point in seconds
|
||||
value: string // annotation value
|
||||
}
|
||||
returns {
|
||||
id: string, (annotation id)
|
||||
id: string, // annotation id
|
||||
...
|
||||
}
|
||||
'''
|
||||
|
@ -179,13 +179,13 @@ def addAnnotations(request, data):
|
|||
'''
|
||||
Adds multiple annotations
|
||||
takes {
|
||||
item: string (item id),
|
||||
layer: string (annotation layer id),
|
||||
item: string, // item id
|
||||
layer: string, // annotation layer id
|
||||
annotations: [
|
||||
{
|
||||
in: float,
|
||||
out: float,
|
||||
value: string
|
||||
in: float, // in point in seconds
|
||||
out: float, // out point in seconds
|
||||
value: string // annotation value
|
||||
},
|
||||
...
|
||||
]
|
||||
|
|
|
@ -499,7 +499,7 @@ def add(request, data):
|
|||
'''
|
||||
Adds a new item (without video)
|
||||
takes {
|
||||
title: string (optional)
|
||||
title: string, // optional
|
||||
}
|
||||
returns {
|
||||
id: string,
|
||||
|
|
Loading…
Reference in a new issue