Liking cljdoc? Tell your friends :D

happygapi.keep.notes

Google Keep API: notes. This API is an enterprise-only API used to create and manage the Keep notes within your domain, including resolving issues identified by CASB software. See: https://developers.google.com/keep/apiapi/reference/rest/v1/notes

Google Keep API: notes.
This API is an enterprise-only API used to create and manage the Keep notes within your domain, including resolving issues identified by CASB software.
See: https://developers.google.com/keep/apiapi/reference/rest/v1/notes
raw docstring

create$clj

(create$ auth parameters body)

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/create

Required parameters: none

Optional parameters: none

Body:

{:permissions [{:family Family, :group Group, :email string, :name string, :role string, :deleted boolean, :user User}], :trashTime string, :name string, :attachments [{:mimeType [string], :name string}], :createTime string, :title string, :updateTime string, :trashed boolean, :body {:text TextContent, :list ListContent}}

Creates a new note.

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/create

Required parameters: none

Optional parameters: none

Body: 

{:permissions [{:family Family,
                :group Group,
                :email string,
                :name string,
                :role string,
                :deleted boolean,
                :user User}],
 :trashTime string,
 :name string,
 :attachments [{:mimeType [string], :name string}],
 :createTime string,
 :title string,
 :updateTime string,
 :trashed boolean,
 :body {:text TextContent, :list ListContent}}

Creates a new note.
sourceraw docstring

delete$clj

(delete$ auth parameters)

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/delete

Required parameters: name

Optional parameters: none

Deletes a note. Caller must have the OWNER role on the note to delete. Deleting a note removes the resource immediately and cannot be undone. Any collaborators will lose access to the note.

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/delete

Required parameters: name

Optional parameters: none

Deletes a note. Caller must have the `OWNER` role on the note to delete. Deleting a note removes the resource immediately and cannot be undone. Any collaborators will lose access to the note.
sourceraw docstring

get$clj

(get$ auth parameters)

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/get

Required parameters: name

Optional parameters: none

Gets a note.

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/get

Required parameters: name

Optional parameters: none

Gets a note.
sourceraw docstring

list$clj

(list$ auth parameters)

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/list

Required parameters: none

Optional parameters: pageToken, filter, pageSize

Lists notes. Every list call returns a page of results with page_size as the upper bound of returned items. A page_size of zero allows the server to choose the upper bound. The ListNotesResponse contains at most page_size entries. If there are more things left to list, it provides a next_page_token value. (Page tokens are opaque values.) To get the next page of results, copy the result's next_page_token into the next request's page_token. Repeat until the next_page_token returned with a page of results is empty. ListNotes return consistent results in the face of concurrent changes, or signals that it cannot with an ABORTED error.

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/list

Required parameters: none

Optional parameters: pageToken, filter, pageSize

Lists notes. Every list call returns a page of results with `page_size` as the upper bound of returned items. A `page_size` of zero allows the server to choose the upper bound. The ListNotesResponse contains at most `page_size` entries. If there are more things left to list, it provides a `next_page_token` value. (Page tokens are opaque values.) To get the next page of results, copy the result's `next_page_token` into the next request's `page_token`. Repeat until the `next_page_token` returned with a page of results is empty. ListNotes return consistent results in the face of concurrent changes, or signals that it cannot with an ABORTED error.
sourceraw docstring

permissions-batchCreate$clj

(permissions-batchCreate$ auth parameters body)

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/permissions/batchCreate

Required parameters: parent

Optional parameters: none

Body:

{:requests [{:parent string, :permission Permission}]}

Creates one or more permissions on the note. Only permissions with the WRITER role may be created. If adding any permission fails, then the entire request fails and no changes are made.

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/permissions/batchCreate

Required parameters: parent

Optional parameters: none

Body: 

{:requests [{:parent string, :permission Permission}]}

Creates one or more permissions on the note. Only permissions with the `WRITER` role may be created. If adding any permission fails, then the entire request fails and no changes are made.
sourceraw docstring

permissions-batchDelete$clj

(permissions-batchDelete$ auth parameters body)

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/permissions/batchDelete

Required parameters: parent

Optional parameters: none

Body:

{:names [string]}

Deletes one or more permissions on the note. The specified entities will immediately lose access. A permission with the OWNER role can't be removed. If removing a permission fails, then the entire request fails and no changes are made. Returns a 400 bad request error if a specified permission does not exist on the note.

https://developers.google.com/keep/apiapi/reference/rest/v1/notes/permissions/batchDelete

Required parameters: parent

Optional parameters: none

Body: 

{:names [string]}

Deletes one or more permissions on the note. The specified entities will immediately lose access. A permission with the `OWNER` role can't be removed. If removing a permission fails, then the entire request fails and no changes are made. Returns a 400 bad request error if a specified permission does not exist on the note.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close