Box Developer Documentation
 
    Latest version

    Get shared link for web link

    get
    https://api.box.com/2.0
    /web_links/:web_link_id

    This endpoint is in the version 2024.0. No changes are required to continue using it. For more details, see Box API versioning.

    Gets the information for a shared link on a web link.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Path Parameters

    Query Parameters

    stringin queryrequired
    shared_link

    Explicitly request the shared_link fields to be returned for this item.

    Response

    application/jsonWeb link

    Returns the base representation of a web link with the additional shared link information.

    application/jsonClient error

    Returned when the access token provided in the Authorization header is not recognized or not provided.

    application/jsonClient error

    Returned if the file is not found, or the user does not have access to the file.

    application/jsonClient error

    Returned if the file_id is not in a recognized format.

    application/jsonClient error

    An unexpected client error.

    get
    Get shared link for web link
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -i -X GET "https://api.box.com/2.0/web_links/32423234?fields=shared_link" \
         -H "authorization: Bearer <ACCESS_TOKEN>"

    Response Example

    {
      "etag": "1",
      "id": "12345",
      "shared_link": {
        "access": "open",
        "download_count": 0,
        "download_url": "https://app.box.com/shared/static/kwio6b4ovt1264rnfbyqo1.pdf",
        "effective_access": "open",
        "effective_permission": "can_download",
        "is_password_enabled": false,
        "permissions": {
          "can_download": true,
          "can_edit": false,
          "can_preview": true
        },
        "preview_count": 0,
        "unshared_at": "2020-09-21T10:34:41-07:00",
        "url": "https://app.box.com/s/kwio6b4ovt1264rnfbyqo1",
        "vanity_name": null,
        "vanity_url": null
      },
      "type": "web_link"
    }