メインコンテンツへスキップ
Boxでウェブリンクを作成するには、APIにフォルダidと、ウェブリンクのリンク先であるurlを渡す必要があります。urlhttp://またはhttps://で始まる必要があります。
curl -i -X POST "https://api.box.com/2.0/web_links" \
     -H "authorization: Bearer <ACCESS_TOKEN>" \
     -H "content-type: application/json" \
     -d '{
       "name": "Cloud Content Management",
       "url": "https://box.com",
       "parent": {
         "id": "0"
       }
     }'