Box Developerドキュメント

Box Developerドキュメントの新しいベータ版サイトがまもなくリリースされる予定です。最新の開発者向けガイド、APIリファレンス、AI搭載の検索により、Boxを使用した迅速な開発をサポートします。更新情報については今しばらくお待ちください。

Box Signのリクエストのリスト取得

ガイド Box Sign Box Signのリクエストのリスト取得

Box Signのリクエストのリスト取得

すべて

署名リクエストを取得エンドポイントを使用すると、渡されたアクセストークンに関連付けられたユーザーが作成したBox Signのすべてのリクエストのリストを表示できます。

cURL
curl -i -X GET "https://api.box.com/2.0/sign_requests" \
     -H "authorization: Bearer <ACCESS_TOKEN>"
Node/TypeScript v10
await client.signRequests.getSignRequests();
Python v10
client.sign_requests.get_sign_requests()
.NET v10
await client.SignRequests.GetSignRequestsAsync();
Swift v10
try await client.signRequests.getSignRequests()
Java v10
client.getSignRequests().getSignRequests()
.NET v6
await client.SignRequests.GetSignRequestsAsync();
Node v4
await client.signRequests.getSignRequests();

IDの指定

IDを指定して署名リクエストを取得エンドポイントを使用すると、Box Signの特定のリクエストに関する情報を表示できます。このエンドポイントには、署名リクエストのIDが必要です。このIDは、Box Signのすべてのリクエストを取得エンドポイントを使用して取得するか、Box Signのリクエストを作成する際にレスポンスで取得することができます。

cURL
curl -i -X GET "https://api.box.com/2.0/sign_requests/<SIGN_REQUEST_ID>" \
     -H "authorization: Bearer <ACCESS_TOKEN>"
Node/TypeScript v10
await client.signRequests.getSignRequestById(createdSignRequest.id!);
Python v10
client.sign_requests.get_sign_request_by_id(created_sign_request.id)
.NET v10
await client.SignRequests.GetSignRequestByIdAsync(signRequestId: NullableUtils.Unwrap(createdSignRequest.Id));
Swift v10
try await client.signRequests.getSignRequestById(signRequestId: createdSignRequest.id!)
Java v10
client.getSignRequests().getSignRequestById(createdSignRequest.getId())
.NET v6
await client.SignRequests.GetSignRequestByIdAsync(signRequestId: NullableUtils.Unwrap(createdSignRequest.Id));
Node v4
await client.signRequests.getSignRequestById(createdSignRequest.id!);