init
This commit is contained in:
commit
922fa0e77a
62 changed files with 2586 additions and 0 deletions
16
_test/test_dev.sh
Executable file
16
_test/test_dev.sh
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
#!/bin/bash
|
||||
|
||||
# APIエンドポイントURL
|
||||
API_URL="https://sales-tool-gw-dev-ex1cujb.an.gateway.dev/trigger-minutes-workflow-from-miitel"
|
||||
|
||||
# APIキー(ヘッダーに付与する場合)
|
||||
API_KEY="AIzaSyBVJOtvJTB4noAfUGEyMhCRqsF5yfypENc"
|
||||
|
||||
# リクエストボディ
|
||||
JSON_FILE="request.json"
|
||||
|
||||
# curlコマンド実行
|
||||
curl -X POST "$API_URL" \
|
||||
-H "Content-Type: application/json" \
|
||||
-H "x-api-key: $API_KEY" \
|
||||
-d @"$JSON_FILE"
|
||||
Loading…
Add table
Add a link
Reference in a new issue