mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2024-11-24 08:52:18 +02:00
Test data update (Jenkins)
This commit is contained in:
parent
533a8fa8d0
commit
c6b0f111d4
BIN
data.json.gpg
BIN
data.json.gpg
Binary file not shown.
6
docs/en/cli/NEW_CLI/airtable/CreateComment/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/CreateComment/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable CreateComment \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--record "rec7du0DwAR34SR4P" \
|
||||
--text "TestComment"
|
6
docs/en/cli/NEW_CLI/airtable/CreateComment/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/CreateComment/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable CreateComment ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--record "rec7du0DwAR34SR4P" ^
|
||||
--text "TestComment"
|
7
docs/en/cli/NEW_CLI/airtable/CreateDatabase/bash.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/CreateDatabase/bash.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint airtable CreateDatabase \
|
||||
--token "***" \
|
||||
--ws "wspdf8yl1yZz3PmWZ" \
|
||||
--title "TestDatabase" \
|
||||
--tablesdata "{'TestTable':[{'name':'Number','type':'number','options':{'precision':0}},{'name':'String','type':'richText'}]}"
|
7
docs/en/cli/NEW_CLI/airtable/CreateDatabase/bat.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/CreateDatabase/bat.txt
Normal file
@ -0,0 +1,7 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint airtable CreateDatabase ^
|
||||
--token "***" ^
|
||||
--ws "wspdf8yl1yZz3PmWZ" ^
|
||||
--title "TestDatabase" ^
|
||||
--tablesdata "{'TestTable':[{'name':'Number','type':'number','options':{'precision':0}},{'name':'String','type':'richText'}]}"
|
8
docs/en/cli/NEW_CLI/airtable/CreateField/bash.txt
Normal file
8
docs/en/cli/NEW_CLI/airtable/CreateField/bash.txt
Normal file
@ -0,0 +1,8 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint airtable CreateField \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--title "5d93d3a7-a2a7-4d0b-ac15-dfdb1584fb8b" \
|
||||
--fielddata "{'name':'5d93d3a7-a2a7-4d0b-ac15-dfdb1584fb8b','type':'number','options':{'precision':0}}"
|
8
docs/en/cli/NEW_CLI/airtable/CreateField/bat.txt
Normal file
8
docs/en/cli/NEW_CLI/airtable/CreateField/bat.txt
Normal file
@ -0,0 +1,8 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint airtable CreateField ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--title "5d93d3a7-a2a7-4d0b-ac15-dfdb1584fb8b" ^
|
||||
--fielddata "{'name':'5d93d3a7-a2a7-4d0b-ac15-dfdb1584fb8b','type':'number','options':{'precision':0}}"
|
7
docs/en/cli/NEW_CLI/airtable/CreatePosts/bash.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/CreatePosts/bash.txt
Normal file
@ -0,0 +1,7 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint airtable CreatePosts \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--data "{'Number':10,'String':'Hello'}"
|
7
docs/en/cli/NEW_CLI/airtable/CreatePosts/bat.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/CreatePosts/bat.txt
Normal file
@ -0,0 +1,7 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint airtable CreatePosts ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--data "{'Number':10,'String':'Hello'}"
|
6
docs/en/cli/NEW_CLI/airtable/CreateTable/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/CreateTable/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable CreateTable \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--title "TestTable2" \
|
||||
--fieldsdata "[{'name':'Number','type':'number','options':{'precision':0}},{'name':'String','type':'richText'},{'name':'Attachment','type':'multipleAttachments'},{'name':'Checkbox','type':'checkbox','options':{'icon':'check','color':'yellowBright'}},{'name':'Date','type':'date','options':{'dateFormat':{'format':'YYYY-MM-DD','name':'iso'}}},{'name':'Phone','type':'phoneNumber'},{'name':'Email','type':'email'},{'name':'Link','type':'url'}]" \
|
||||
--description "NewTable"
|
6
docs/en/cli/NEW_CLI/airtable/CreateTable/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/CreateTable/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable CreateTable ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--title "TestTable2" ^
|
||||
--fieldsdata "[{'name':'Number','type':'number','options':{'precision':0}},{'name':'String','type':'richText'},{'name':'Attachment','type':'multipleAttachments'},{'name':'Checkbox','type':'checkbox','options':{'icon':'check','color':'yellowBright'}},{'name':'Date','type':'date','options':{'dateFormat':{'format':'YYYY-MM-DD','name':'iso'}}},{'name':'Phone','type':'phoneNumber'},{'name':'Email','type':'email'},{'name':'Link','type':'url'}]" ^
|
||||
--description "NewTable"
|
6
docs/en/cli/NEW_CLI/airtable/DeleteComment/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/DeleteComment/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable DeleteComment \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--record "rec7du0DwAR34SR4P" \
|
||||
--comment "comuiln2kGod1m2Fq"
|
6
docs/en/cli/NEW_CLI/airtable/DeleteComment/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/DeleteComment/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable DeleteComment ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--record "rec7du0DwAR34SR4P" ^
|
||||
--comment "comuiln2kGod1m2Fq"
|
5
docs/en/cli/NEW_CLI/airtable/DeletePosts/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/airtable/DeletePosts/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint airtable DeletePosts \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--records "rec7du0DwAR34SR4P"
|
5
docs/en/cli/NEW_CLI/airtable/DeletePosts/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/airtable/DeletePosts/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint airtable DeletePosts ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--records "rec7du0DwAR34SR4P"
|
7
docs/en/cli/NEW_CLI/airtable/EditComment/bash.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/EditComment/bash.txt
Normal file
@ -0,0 +1,7 @@
|
||||
oint airtable EditComment \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--record "rec7du0DwAR34SR4P" \
|
||||
--comment "comuiln2kGod1m2Fq" \
|
||||
--text "Test comment (change.)"
|
7
docs/en/cli/NEW_CLI/airtable/EditComment/bat.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/EditComment/bat.txt
Normal file
@ -0,0 +1,7 @@
|
||||
oint airtable EditComment ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--record "rec7du0DwAR34SR4P" ^
|
||||
--comment "comuiln2kGod1m2Fq" ^
|
||||
--text "Test comment (change.)"
|
2
docs/en/cli/NEW_CLI/airtable/GetAttachmentField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetAttachmentField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetAttachmentField \
|
||||
--title "Attachment"
|
2
docs/en/cli/NEW_CLI/airtable/GetAttachmentField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetAttachmentField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetAttachmentField ^
|
||||
--title "Attachment"
|
2
docs/en/cli/NEW_CLI/airtable/GetCheckboxField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetCheckboxField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetCheckboxField \
|
||||
--title "Checkbox"
|
2
docs/en/cli/NEW_CLI/airtable/GetCheckboxField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetCheckboxField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetCheckboxField ^
|
||||
--title "Checkbox"
|
5
docs/en/cli/NEW_CLI/airtable/GetComments/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/airtable/GetComments/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint airtable GetComments \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--record "rec7du0DwAR34SR4P"
|
5
docs/en/cli/NEW_CLI/airtable/GetComments/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/airtable/GetComments/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint airtable GetComments ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--record "rec7du0DwAR34SR4P"
|
3
docs/en/cli/NEW_CLI/airtable/GetDatabaseTables/bash.txt
Normal file
3
docs/en/cli/NEW_CLI/airtable/GetDatabaseTables/bash.txt
Normal file
@ -0,0 +1,3 @@
|
||||
oint airtable GetDatabaseTables \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP"
|
3
docs/en/cli/NEW_CLI/airtable/GetDatabaseTables/bat.txt
Normal file
3
docs/en/cli/NEW_CLI/airtable/GetDatabaseTables/bat.txt
Normal file
@ -0,0 +1,3 @@
|
||||
oint airtable GetDatabaseTables ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP"
|
2
docs/en/cli/NEW_CLI/airtable/GetDateField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetDateField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetDateField \
|
||||
--title "Date"
|
2
docs/en/cli/NEW_CLI/airtable/GetDateField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetDateField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetDateField ^
|
||||
--title "Date"
|
2
docs/en/cli/NEW_CLI/airtable/GetEmailField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetEmailField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetEmailField \
|
||||
--title "Email"
|
2
docs/en/cli/NEW_CLI/airtable/GetEmailField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetEmailField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetEmailField ^
|
||||
--title "Email"
|
2
docs/en/cli/NEW_CLI/airtable/GetLinkField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetLinkField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetLinkField \
|
||||
--title "Link"
|
2
docs/en/cli/NEW_CLI/airtable/GetLinkField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetLinkField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetLinkField ^
|
||||
--title "Link"
|
2
docs/en/cli/NEW_CLI/airtable/GetListOfBases/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetListOfBases/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetListOfBases \
|
||||
--token "***"
|
2
docs/en/cli/NEW_CLI/airtable/GetListOfBases/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetListOfBases/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetListOfBases ^
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/airtable/GetListOfRecords/bash.txt
Normal file
4
docs/en/cli/NEW_CLI/airtable/GetListOfRecords/bash.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint airtable GetListOfRecords \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt"
|
4
docs/en/cli/NEW_CLI/airtable/GetListOfRecords/bat.txt
Normal file
4
docs/en/cli/NEW_CLI/airtable/GetListOfRecords/bat.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint airtable GetListOfRecords ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt"
|
2
docs/en/cli/NEW_CLI/airtable/GetNumberField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetNumberField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetNumberField \
|
||||
--title "5d93d3a7-a2a7-4d0b-ac15-dfdb1584fb8b"
|
2
docs/en/cli/NEW_CLI/airtable/GetNumberField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetNumberField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetNumberField ^
|
||||
--title "5d93d3a7-a2a7-4d0b-ac15-dfdb1584fb8b"
|
2
docs/en/cli/NEW_CLI/airtable/GetPhoneField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetPhoneField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetPhoneField \
|
||||
--title "Phone"
|
2
docs/en/cli/NEW_CLI/airtable/GetPhoneField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetPhoneField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetPhoneField ^
|
||||
--title "Phone"
|
5
docs/en/cli/NEW_CLI/airtable/GetRecord/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/airtable/GetRecord/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint airtable GetRecord \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--record "rec7du0DwAR34SR4P"
|
5
docs/en/cli/NEW_CLI/airtable/GetRecord/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/airtable/GetRecord/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint airtable GetRecord ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--record "rec7du0DwAR34SR4P"
|
2
docs/en/cli/NEW_CLI/airtable/GetStringField/bash.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetStringField/bash.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetStringField \
|
||||
--title "String"
|
2
docs/en/cli/NEW_CLI/airtable/GetStringField/bat.txt
Normal file
2
docs/en/cli/NEW_CLI/airtable/GetStringField/bat.txt
Normal file
@ -0,0 +1,2 @@
|
||||
oint airtable GetStringField ^
|
||||
--title "String"
|
7
docs/en/cli/NEW_CLI/airtable/ModifyField/bash.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/ModifyField/bash.txt
Normal file
@ -0,0 +1,7 @@
|
||||
oint airtable ModifyField \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--field "fldNQWmLVEjyQhxH4" \
|
||||
--title "45d3f370-2604-41c7-b4b6-2e03bc2c4e3f(change.)" \
|
||||
--description "New description"
|
7
docs/en/cli/NEW_CLI/airtable/ModifyField/bat.txt
Normal file
7
docs/en/cli/NEW_CLI/airtable/ModifyField/bat.txt
Normal file
@ -0,0 +1,7 @@
|
||||
oint airtable ModifyField ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--field "fldNQWmLVEjyQhxH4" ^
|
||||
--title "45d3f370-2604-41c7-b4b6-2e03bc2c4e3f(change.)" ^
|
||||
--description "New description"
|
6
docs/en/cli/NEW_CLI/airtable/ModifyTable/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/ModifyTable/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable ModifyTable \
|
||||
--token "***" \
|
||||
--base "appAQ9g7KfKxZjIqP" \
|
||||
--table "tbleZAcXuM1Fye5lt" \
|
||||
--title "Test table 2 (change.)" \
|
||||
--description "New table (change.)"
|
6
docs/en/cli/NEW_CLI/airtable/ModifyTable/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/airtable/ModifyTable/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint airtable ModifyTable ^
|
||||
--token "***" ^
|
||||
--base "appAQ9g7KfKxZjIqP" ^
|
||||
--table "tbleZAcXuM1Fye5lt" ^
|
||||
--title "Test table 2 (change.)" ^
|
||||
--description "New table (change.)"
|
8
docs/en/cli/NEW_CLI/bitrix24/AddCustomTaskField/bash.txt
Normal file
8
docs/en/cli/NEW_CLI/bitrix24/AddCustomTaskField/bash.txt
Normal file
@ -0,0 +1,8 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 AddCustomTaskField \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--fieldid 261 \
|
||||
--externalid "NEW_TEXT_FIELD" \
|
||||
--label "{'en':'Updated field','ru':'Izmenennoe pole'}" \
|
||||
--token "***"
|
8
docs/en/cli/NEW_CLI/bitrix24/AddCustomTaskField/bat.txt
Normal file
8
docs/en/cli/NEW_CLI/bitrix24/AddCustomTaskField/bat.txt
Normal file
@ -0,0 +1,8 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 AddCustomTaskField ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--fieldid 261 ^
|
||||
--externalid "NEW_TEXT_FIELD" ^
|
||||
--label "{'en':'Updated field','ru':'Izmenennoe pole'}" ^
|
||||
--token "***"
|
7
docs/en/cli/NEW_CLI/bitrix24/AddKanbanStage/bash.txt
Normal file
7
docs/en/cli/NEW_CLI/bitrix24/AddKanbanStage/bash.txt
Normal file
@ -0,0 +1,7 @@
|
||||
oint bitrix24 AddKanbanStage \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--title "New stage 2" \
|
||||
--color "0026FF" \
|
||||
--prevstage 924 \
|
||||
--admin true \
|
||||
--token "***"
|
7
docs/en/cli/NEW_CLI/bitrix24/AddKanbanStage/bat.txt
Normal file
7
docs/en/cli/NEW_CLI/bitrix24/AddKanbanStage/bat.txt
Normal file
@ -0,0 +1,7 @@
|
||||
oint bitrix24 AddKanbanStage ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--title "New stage 2" ^
|
||||
--color "0026FF" ^
|
||||
--prevstage 924 ^
|
||||
--admin true ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AddPostComment/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AddPostComment/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddPostComment \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--postid 1030 \
|
||||
--text "Another comment" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AddPostComment/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AddPostComment/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddPostComment ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--postid 1030 ^
|
||||
--text "Another comment" ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AddPostRecipients/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AddPostRecipients/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddPostRecipients \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--postid 1030 \
|
||||
--vision "UA" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AddPostRecipients/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AddPostRecipients/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddPostRecipients ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--postid 1030 ^
|
||||
--vision "UA" ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AddTaskComment/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AddTaskComment/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddTaskComment \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2614" \
|
||||
--text "Task uninpossible, don't split up" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AddTaskComment/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AddTaskComment/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddTaskComment ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2614" ^
|
||||
--text "Task uninpossible, don't split up" ^
|
||||
--token "***"
|
@ -0,0 +1,8 @@
|
||||
oint bitrix24 AddTaskTimeAccounting \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2618" \
|
||||
--amount 7200 \
|
||||
--user 10 \
|
||||
--text "Time spent on work" \
|
||||
--date "2024-09-20T22:03:18.1197901" \
|
||||
--token "***"
|
@ -0,0 +1,8 @@
|
||||
oint bitrix24 AddTaskTimeAccounting ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2618" ^
|
||||
--amount 7200 ^
|
||||
--user 10 ^
|
||||
--text "Time spent on work" ^
|
||||
--date "2024-09-20T22:03:18.1197901" ^
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/bitrix24/AddTaskToFavorites/bash.txt
Normal file
4
docs/en/cli/NEW_CLI/bitrix24/AddTaskToFavorites/bash.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint bitrix24 AddTaskToFavorites \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/bitrix24/AddTaskToFavorites/bat.txt
Normal file
4
docs/en/cli/NEW_CLI/bitrix24/AddTaskToFavorites/bat.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint bitrix24 AddTaskToFavorites ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--token "***"
|
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddTasksChecklistElement \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--text "Checklist element" \
|
||||
--token "***"
|
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AddTasksChecklistElement ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--text "Checklist element" ^
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/AddUsersToChat/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/AddUsersToChat/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint bitrix24 AddUsersToChat \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--chat 1076 \
|
||||
--users "[10,12]" \
|
||||
--hide true \
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/AddUsersToChat/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/AddUsersToChat/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint bitrix24 AddUsersToChat ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--chat 1076 ^
|
||||
--users "[10,12]" ^
|
||||
--hide true ^
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/bitrix24/ApproveTask/bash.txt
Normal file
4
docs/en/cli/NEW_CLI/bitrix24/ApproveTask/bash.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint bitrix24 ApproveTask \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/bitrix24/ApproveTask/bat.txt
Normal file
4
docs/en/cli/NEW_CLI/bitrix24/ApproveTask/bat.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint bitrix24 ApproveTask ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AttachFileToTopic/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AttachFileToTopic/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AttachFileToTopic \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--fileid 13832 \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/AttachFileToTopic/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/AttachFileToTopic/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 AttachFileToTopic ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--fileid 13832 ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatColor/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatColor/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatColor \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--chat 1074 \
|
||||
--color "PURPLE" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatColor/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatColor/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatColor ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--chat 1074 ^
|
||||
--color "PURPLE" ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatOwner/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatOwner/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatOwner \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--chat 1076 \
|
||||
--user 10 \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatOwner/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatOwner/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatOwner ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--chat 1076 ^
|
||||
--user 10 ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatPicture/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatPicture/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatPicture \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--chat 1076 \
|
||||
--picture "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatPicture/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatPicture/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatPicture ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--chat 1076 ^
|
||||
--picture "https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg" ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatTitle/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatTitle/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatTitle \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--chat 1076 \
|
||||
--title "Another title" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatTitle/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeChatTitle/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeChatTitle ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--chat 1076 ^
|
||||
--title "Another title" ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeUserStatus/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeUserStatus/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeUserStatus \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--userid 690 \
|
||||
--fire true \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/ChangeUserStatus/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/ChangeUserStatus/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 ChangeUserStatus ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--userid 690 ^
|
||||
--fire true ^
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/CheckTaskAccesses/bash.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/CheckTaskAccesses/bash.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 CheckTaskAccesses \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--users "['1','10']" \
|
||||
--token "***"
|
5
docs/en/cli/NEW_CLI/bitrix24/CheckTaskAccesses/bat.txt
Normal file
5
docs/en/cli/NEW_CLI/bitrix24/CheckTaskAccesses/bat.txt
Normal file
@ -0,0 +1,5 @@
|
||||
oint bitrix24 CheckTaskAccesses ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--users "['1','10']" ^
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/bitrix24/CompleteTask/bash.txt
Normal file
4
docs/en/cli/NEW_CLI/bitrix24/CompleteTask/bash.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint bitrix24 CompleteTask \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--token "***"
|
4
docs/en/cli/NEW_CLI/bitrix24/CompleteTask/bat.txt
Normal file
4
docs/en/cli/NEW_CLI/bitrix24/CompleteTask/bat.txt
Normal file
@ -0,0 +1,4 @@
|
||||
oint bitrix24 CompleteTask ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--token "***"
|
@ -0,0 +1,5 @@
|
||||
oint bitrix24 CompleteTasksChecklistElement \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--task "2612" \
|
||||
--element 1636 \
|
||||
--token "***"
|
@ -0,0 +1,5 @@
|
||||
oint bitrix24 CompleteTasksChecklistElement ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--task "2612" ^
|
||||
--element 1636 ^
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateChat/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateChat/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreateChat \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--fields "{'TYPE':'CHAT','TITLE':'Private chat','USERS':[10,1]}" \
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateChat/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateChat/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreateChat ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--fields "{'TYPE':'CHAT','TITLE':'Private chat','USERS':[10,1]}" ^
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateDeal/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateDeal/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreateDeal \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--fields "{'TITLE':'Another deal','TYPE_ID':'GOODS','STAGE_ID':'NEW','COMPANY_ID':1,'CONTACT_ID':3,'OPENED':'Y','ASSIGNED_BY_ID':1,'PROBABILITY':30,'CURRENCY_ID':'USD','OPPORTUNITY':5000,'CATEGORY_ID':5,'BEGINDATE':'2024-01-01','CLOSEDATE':'2031-01-01'}" \
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateDeal/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateDeal/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreateDeal ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--fields "{'TITLE':'Another deal','TYPE_ID':'GOODS','STAGE_ID':'NEW','COMPANY_ID':1,'CONTACT_ID':3,'OPENED':'Y','ASSIGNED_BY_ID':1,'PROBABILITY':30,'CURRENCY_ID':'USD','OPPORTUNITY':5000,'CATEGORY_ID':5,'BEGINDATE':'2024-01-01','CLOSEDATE':'2031-01-01'}" ^
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateDepartment/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateDepartment/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint bitrix24 CreateDepartment \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--title "Subordinate department" \
|
||||
--parentid 678 \
|
||||
--headid 1 \
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateDepartment/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateDepartment/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
oint bitrix24 CreateDepartment ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--title "Subordinate department" ^
|
||||
--parentid 678 ^
|
||||
--headid 1 ^
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateLead/bash.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateLead/bash.txt
Normal file
@ -0,0 +1,6 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreateLead \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--fields "{'ADDRESS':'Pushkin st., b. 10','ADDRESS_COUNTRY':'Russia','EMAIL':[{'VALUE':'yo@example.com','VALUE_TYPE':'HOME'},{'VALUE':'hi@example.com','VALUE_TYPE':'WORK'}],'NAME':'Ivan','LAST_NAME':'Ivanov','PHONE':[{'VALUE':'88005553535','VALUE_TYPE':'WORK'}],'TITLE':'MegaClient'}" \
|
||||
--token "***"
|
6
docs/en/cli/NEW_CLI/bitrix24/CreateLead/bat.txt
Normal file
6
docs/en/cli/NEW_CLI/bitrix24/CreateLead/bat.txt
Normal file
@ -0,0 +1,6 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreateLead ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--fields "{'ADDRESS':'Pushkin st., b. 10','ADDRESS_COUNTRY':'Russia','EMAIL':[{'VALUE':'yo@example.com','VALUE_TYPE':'HOME'},{'VALUE':'hi@example.com','VALUE_TYPE':'WORK'}],'NAME':'Ivan','LAST_NAME':'Ivanov','PHONE':[{'VALUE':'88005553535','VALUE_TYPE':'WORK'}],'TITLE':'MegaClient'}" ^
|
||||
--token "***"
|
@ -0,0 +1,6 @@
|
||||
oint bitrix24 CreatePersonalNotification \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--user 10 \
|
||||
--text "Message text" \
|
||||
--tag "New" \
|
||||
--token "***"
|
@ -0,0 +1,6 @@
|
||||
oint bitrix24 CreatePersonalNotification ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--user 10 ^
|
||||
--text "Message text" ^
|
||||
--tag "New" ^
|
||||
--token "***"
|
8
docs/en/cli/NEW_CLI/bitrix24/CreatePost/bash.txt
Normal file
8
docs/en/cli/NEW_CLI/bitrix24/CreatePost/bash.txt
Normal file
@ -0,0 +1,8 @@
|
||||
# JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreatePost \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--text "Text of post" \
|
||||
--files "{'1.png':'https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg','2.png':'https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg'}" \
|
||||
--title "Post title" \
|
||||
--token "***"
|
8
docs/en/cli/NEW_CLI/bitrix24/CreatePost/bat.txt
Normal file
8
docs/en/cli/NEW_CLI/bitrix24/CreatePost/bat.txt
Normal file
@ -0,0 +1,8 @@
|
||||
:: JSON data can also be passed as a path to a .json file
|
||||
|
||||
oint bitrix24 CreatePost ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--text "Text of post" ^
|
||||
--files "{'1.png':'https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture.jpg','2.png':'https://github.com/Bayselonarrend/OpenIntegrations/raw/main/service/test_data/picture2.jpg'}" ^
|
||||
--title "Post title" ^
|
||||
--token "***"
|
@ -0,0 +1,4 @@
|
||||
oint bitrix24 CreateResultFromComment \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--comment 6444 \
|
||||
--token "***"
|
@ -0,0 +1,4 @@
|
||||
oint bitrix24 CreateResultFromComment ^
|
||||
--url "b24-ar17wx.bitrix24.by" ^
|
||||
--comment 6444 ^
|
||||
--token "***"
|
@ -0,0 +1,5 @@
|
||||
oint bitrix24 CreateStorageFolder \
|
||||
--url "b24-ar17wx.bitrix24.by" \
|
||||
--storageid 3 \
|
||||
--title "New catalog" \
|
||||
--token "***"
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user