PDF Manager Template

Stability: production

A PDF Manager template contains the configuration that determines the contents of a PDF Manager batch. It is configured in the user interface and only readable in the API.

Attributes

Name Type Description Example
pdf_manager_template:document_source_title string Human-readable name of the document source that is used when populating this template. "Full Application PDF"
pdf_manager_template:href string Hypertext reference to this resource.
pattern: /api/v1/user_identities/\d+/pdf_manager_templates/\d+
"/api/v1/user_identities/1/pdf_manager_templates/2"
pdf_manager_template:id integer Unique identifier of this PDF Manager template. 2
pdf_manager_template:list_name string Human-readable name of the list that is used when populating this template. "Offer Accepted"
pdf_manager_template:name string Human-readable name of this PDF Manager template. "Accepted Offers for Review"

PDF Manager Template List

List existing PDF Manager templates.

GET /api/v1/user_identities/:user_identity_id/pdf_manager_templates

Curl Example

$ curl -n https://api.webadmit.org/api/v1/user_identities/:user_identity_id/pdf_manager_templates \
  -H "x-api-key: 0123456789abcdef0123456789abcdef"

Response Example

HTTP/1.1 200 OK
{
  "href": "/api/v1/user_identities/1/pdf_manager_templates",
  "pdf_manager_templates": [
    {
      "href": "/api/v1/user_identities/1/pdf_manager_templates/2",
      "id": 2,
      "name": "Accepted Offers for Review",
      "list_name": "Offer Accepted",
      "document_source_title": "Full Application PDF"
    }
  ]
}

PDF Manager Template Show

Display an existing PDF Manager template.

GET /api/v1/user_identities/:user_identity_id/pdf_manager_templates/:pdf_manager_template_id

Curl Example

$ curl -n https://api.webadmit.org/api/v1/user_identities/:user_identity_id/pdf_manager_templates/:pdf_manager_template_id \
  -H "x-api-key: 0123456789abcdef0123456789abcdef"

Response Example

HTTP/1.1 200 OK
{
  "pdf_manager_template": {
    "href": "/api/v1/user_identities/1/pdf_manager_templates/2",
    "id": 2,
    "name": "Accepted Offers for Review",
    "list_name": "Offer Accepted",
    "document_source_title": "Full Application PDF"
  }
}

Not Found

Response Example

HTTP/1.1 404 Not Found
{
  "message": "Not Found"
}

While 404 Not Found is most often associated with resources that don't exist when making a GET request, please note that 404 Not Found is also the response during POST, PUT, and PATCH requests if any resources specified by parameters cannot be found.

Unauthorized

Response Example

HTTP/1.1 401 Unauthorized

(Empty response body.)