We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a8fc65 commit ae48a8fCopy full SHA for ae48a8f
openapi.yaml
@@ -12021,6 +12021,23 @@ paths:
12021
$ref: '#/components/schemas/Tag'
12022
default:
12023
$ref: '#/components/responses/ErrorResponse'
12024
+ x-code-samples:
12025
+ - lang: Shell
12026
+ source: >
12027
+ curl -H "Content-Type: application/json" \
12028
+ -H "Authorization: Bearer $TOKEN" \
12029
+ -X POST -d '{
12030
+ "label": "example tag",
12031
+ "linodes": [123,456],
12032
+ "volumes": [9082,10003]
12033
+ }' \
12034
+ https://api.linode.com/v4/tags
12035
+ - lang: CLI
12036
12037
+ linode-cli tags create \
12038
+ --label 'example tag' \
12039
+ --linodes (123 456) \
12040
+ --volumes (9082 10003)
12041
/tags/{label}:
12042
x-linode-cli-command: tags
12043
parameters:
0 commit comments