Operations
GET /templates
| Summary | Get list of available legal templates |
|---|---|
| URL | /api/v1/templates |
| Detailed Description |
In order to place an order for a Ready to Certify or Ready to Certify Premium, you must provide the template that you would like to use. Your Rev Customer Success representative will work with you to create a set of custom Ready to Certify templates. You can also choose from one of Rev's standard templates. Note: Placing Legal Transcription orders requires some additional set up by the Rev team. Please contact us at legalsupport@rev.com for support.
|
| Request Headers |
|
| Request Parameters |
Calling the /templates endpoint without any query parameters will return a list of all templates you have access to, both organization-specific templates and Rev standard templates.
|
| Response |
On success, 200 OK. On error, 400 Bad Request. If the user is not a legal transcription customer, 403 Forbidden |
| Response Body | On success, an <templates/> entity with a list of templates. On error, will contain an <error/> entity with more details. |
| Annotated sample response |
{
"templates": [
{
/*
The template id you will use in your order request
*/
"id": 21904476,
/*
The type of proceeding this template is for
*/
"proceeding_type": "deposition",
/*
The name of the template
*/
"name": "Rev Standard Deposition NY",
/*
The jurisdiction this template is for
*/
"jurisdiction": "NY",
/*
Whether this template is a Rev standard template
*/
"rev_standard": true,
/*
A sample document that shows the format of the template
*/
"sample_url": "https://www.rev.com/sample-template-url"
},
{
"id": 527310255,
"proceeding_type": "hearing",
"name": "My Hearing Template GA",
"jurisdiction": "GA",
"rev_standard": false,
"sample_url": "https://www.rev.com/sample-template-url"
}
]
}
|