|
|
|
|
@ -951,22 +951,16 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
|
|
|
|
|
<Row>
|
|
|
|
|
<Col>
|
|
|
|
|
このアプリケーションの基本情報を取得するために使用されます
|
|
|
|
|
### Query
|
|
|
|
|
<Properties>
|
|
|
|
|
|
|
|
|
|
<Property name='user' type='string' key='user'>
|
|
|
|
|
ユーザー識別子、開発者のルールによって定義され、アプリケーション内で一意でなければなりません。
|
|
|
|
|
</Property>
|
|
|
|
|
</Properties>
|
|
|
|
|
### Response
|
|
|
|
|
- `name` (string) アプリケーションの名前
|
|
|
|
|
- `description` (string) アプリケーションの説明
|
|
|
|
|
- `tags` (array[string]) アプリケーションのタグ
|
|
|
|
|
</Col>
|
|
|
|
|
<Col>
|
|
|
|
|
<CodeGroup title="Request" tag="GET" label="/info" targetCode={`curl -X GET '${props.appDetail.api_base_url}/info?user=abc-123' \\\n-H 'Authorization: Bearer {api_key}'`}>
|
|
|
|
|
<CodeGroup title="Request" tag="GET" label="/info" targetCode={`curl -X GET '${props.appDetail.api_base_url}/info' \\\n-H 'Authorization: Bearer {api_key}'`}>
|
|
|
|
|
```bash {{ title: 'cURL' }}
|
|
|
|
|
curl -X GET '${props.appDetail.api_base_url}/info?user=abc-123' \
|
|
|
|
|
curl -X GET '${props.appDetail.api_base_url}/info' \
|
|
|
|
|
-H 'Authorization: Bearer {api_key}'
|
|
|
|
|
```
|
|
|
|
|
</CodeGroup>
|
|
|
|
|
@ -997,14 +991,6 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
|
|
|
|
|
<Col>
|
|
|
|
|
ページに入る際に、機能、入力パラメータ名、タイプ、デフォルト値などの情報を取得するために使用されます。
|
|
|
|
|
|
|
|
|
|
### クエリ
|
|
|
|
|
|
|
|
|
|
<Properties>
|
|
|
|
|
<Property name='user' type='string' key='user'>
|
|
|
|
|
ユーザー識別子、開発者のルールによって定義され、アプリケーション内で一意でなければなりません。
|
|
|
|
|
</Property>
|
|
|
|
|
</Properties>
|
|
|
|
|
|
|
|
|
|
### 応答
|
|
|
|
|
- `opening_statement` (string) 開始の挨拶
|
|
|
|
|
- `suggested_questions` (array[string]) 開始時の推奨質問のリスト
|
|
|
|
|
@ -1048,10 +1034,10 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
|
|
|
|
|
</Col>
|
|
|
|
|
<Col sticky>
|
|
|
|
|
|
|
|
|
|
<CodeGroup title="リクエスト" tag="GET" label="/parameters" targetCode={` curl -X GET '${props.appDetail.api_base_url}/parameters?user=abc-123'`}>
|
|
|
|
|
<CodeGroup title="リクエスト" tag="GET" label="/parameters" targetCode={` curl -X GET '${props.appDetail.api_base_url}/parameters'`}>
|
|
|
|
|
|
|
|
|
|
```bash {{ title: 'cURL' }}
|
|
|
|
|
curl -X GET '${props.appDetail.api_base_url}/parameters?user=abc-123' \
|
|
|
|
|
curl -X GET '${props.appDetail.api_base_url}/parameters' \
|
|
|
|
|
--header 'Authorization: Bearer {api_key}'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
@ -1116,13 +1102,7 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
|
|
|
|
|
<Row>
|
|
|
|
|
<Col>
|
|
|
|
|
このアプリケーションのツールのアイコンを取得するために使用されます
|
|
|
|
|
### クエリ
|
|
|
|
|
<Properties>
|
|
|
|
|
|
|
|
|
|
<Property name='user' type='string' key='user'>
|
|
|
|
|
ユーザー識別子、開発者のルールによって定義され、アプリケーション内で一意でなければなりません。
|
|
|
|
|
</Property>
|
|
|
|
|
</Properties>
|
|
|
|
|
### 応答
|
|
|
|
|
- `tool_icons`(object[string]) ツールアイコン
|
|
|
|
|
- `tool_name` (string)
|
|
|
|
|
@ -1133,9 +1113,9 @@ import { Row, Col, Properties, Property, Heading, SubProperty, Paragraph } from
|
|
|
|
|
- (string) アイコンのURL
|
|
|
|
|
</Col>
|
|
|
|
|
<Col>
|
|
|
|
|
<CodeGroup title="リクエスト" tag="GET" label="/meta" targetCode={`curl -X GET '${props.appDetail.api_base_url}/meta?user=abc-123' \\\n-H 'Authorization: Bearer {api_key}'`}>
|
|
|
|
|
<CodeGroup title="リクエスト" tag="GET" label="/meta" targetCode={`curl -X GET '${props.appDetail.api_base_url}/meta' \\\n-H 'Authorization: Bearer {api_key}'`}>
|
|
|
|
|
```bash {{ title: 'cURL' }}
|
|
|
|
|
curl -X GET '${props.appDetail.api_base_url}/meta?user=abc-123' \
|
|
|
|
|
curl -X GET '${props.appDetail.api_base_url}/meta' \
|
|
|
|
|
-H 'Authorization: Bearer {api_key}'
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|