Skip to content

Commit

Permalink
feat: Support sign templates (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
congminh1254 authored Sep 15, 2023
1 parent 744777d commit 955106f
Show file tree
Hide file tree
Showing 13 changed files with 577 additions and 71 deletions.
73 changes: 73 additions & 0 deletions docs/sign-templates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
`box sign-templates`
===================

Manage sign templates

* [`box sign-templates`](#box-sign-templates)
* [`box sign-templates:get ID`](#box-sign-templatesget-id)

## `box sign-templates`

List sign templates

```
USAGE
$ box sign-templates
OPTIONS
-h, --help Show CLI help
-q, --quiet Suppress any non-error output to stderr
-s, --save Save report to default reports folder on disk
-t, --token=token Provide a token to perform this call
-v, --verbose Show verbose output, which can be helpful for debugging
-y, --yes Automatically respond yes to all confirmation prompts
--as-user=as-user Provide an ID for a user
--bulk-file-path=bulk-file-path File path to bulk .csv or .json objects
--csv Output formatted CSV
--fields=fields Comma separated list of fields to show
--json Output formatted JSON
--limit=limit The maximum number of items to return per page.
--marker=marker Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination. This requires `usemarker` to be set to `true`.
--no-color Turn off colors for logging
--save-to-file-path=save-to-file-path Override default file path to save report
EXAMPLE
box sign-templates
COMMANDS
sign-templates:get Get sign template by ID
```

_See code: [src/commands/sign-templates/index.js](https://github.com/box/boxcli/blob/v3.12.0/src/commands/sign-templates/index.js)_

## `box sign-templates:get ID`

Get sign template by ID

```
USAGE
$ box sign-templates:get ID
ARGUMENTS
ID The ID of the sign template
OPTIONS
-h, --help Show CLI help
-q, --quiet Suppress any non-error output to stderr
-s, --save Save report to default reports folder on disk
-t, --token=token Provide a token to perform this call
-v, --verbose Show verbose output, which can be helpful for debugging
-y, --yes Automatically respond yes to all confirmation prompts
--as-user=as-user Provide an ID for a user
--bulk-file-path=bulk-file-path File path to bulk .csv or .json objects
--csv Output formatted CSV
--fields=fields Comma separated list of fields to show
--json Output formatted JSON
--no-color Turn off colors for logging
--save-to-file-path=save-to-file-path Override default file path to save report
EXAMPLE
box sign-templates:get 12345
```

_See code: [src/commands/sign-templates/get.js](https://github.com/box/boxcli/blob/v3.12.0/src/commands/sign-templates/get.js)_
Loading

0 comments on commit 955106f

Please sign in to comment.