Box Developer Documentation
 
    Latest version

    Get list of all Box Doc Gen jobs for template

    get
    https://api.box.com/2.0
    /docgen_template_jobs/:template_id

    Lists the users jobs which use this template.

    Request

    bearer [ACCESS_TOKEN]
    application/json

    Request Headers

    stringin headerrequired

    Version header

    Value is always 2025.0

    Path Parameters

    stringin pathrequired
    123

    Id of template to fetch jobs for.

    Query Parameters

    integer (int64)in queryoptional
    1000
    1000

    The maximum number of items to return per page.

    stringin queryoptional
    JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii

    Defines the position marker at which to begin returning results. This is used when paginating using marker-based pagination.

    This requires usemarker to be set to true.

    Response

    application/jsonBox Doc Gen jobs

    A single Box Doc Gen template.

    application/jsonClient error

    Returned if the user has passed in a malformed marker or limit value.

    application/jsonClient error

    The client does not have access rights to the content or resource requested.

    application/jsonClient error

    Returned if the template is not found or the user does not have access to the associated template.

    application/jsonClient error

    The user has sent too many requests in a given amount of time.

    application/jsonClient error

    An unexpected condition was encountered on the server.

    get
    Get list of all Box Doc Gen jobs for template
    You can now try out some of our APIs live, right here in the documentation.
    Log in

    Request Example

    cURL
    curl -L 'https://api.box.com/2.0/docgen_template_jobs/12345678' \
         -H 'box-version: 2025.0' \
         -H 'Authorization: Bearer <ACCESS_TOKEN>'

    Response Example

    {
      "entries": [
        {
          "id": "12345",
          "type": "docgen_job",
          "batch": {
            "id": "12345",
            "type": "docgen_batch"
          },
          "output_file": {
            "id": "42037322",
            "type": "file"
          },
          "output_file_version": {
            "id": "12345",
            "type": "file_version"
          },
          "output_type": "docx",
          "status": "completed",
          "template_file": {
            "id": "42037322",
            "type": "file"
          },
          "template_file_version": {
            "id": "12345",
            "type": "file_version"
          }
        }
      ],
      "limit": 1000,
      "next_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVii",
      "prev_marker": "JV9IRGZmieiBasejOG9yDCRNgd2ymoZIbjsxbJMjIs3kioVih"
    }