Quote
List Quotes
Returns all quotes belonging to the authenticated user’s account, excluding pending quotes.
GET
/
quotes
List Quotes
curl --request GET \
--url https://api.fortiseval.com/v1/quotes \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fortiseval.com/v1/quotes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fortiseval.com/v1/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fortiseval.com/v1/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fortiseval.com/v1/quotes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fortiseval.com/v1/quotes")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fortiseval.com/v1/quotes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"url": "<string>",
"number": "<string>",
"status": "pending",
"quote_type": "translation",
"requested_turnaround": "standard",
"tat_value": 123,
"tat_range": "hour",
"turnaround_label": "<string>",
"has_guaranteed_delivery": true,
"guaranteed_delivery_at": "<string>",
"total_cents": 123,
"total": "<string>",
"expires_at": "<string>",
"requested_at": "<string>",
"approved_at": "<string>",
"canceled_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"items": [
{
"quantity": 123,
"price": 123,
"subtotal": 123,
"currency": "<string>",
"service_name": "<string>",
"service_code": "<string>"
}
],
"cart": {
"id": "<string>",
"number": "<string>",
"status": "in_progress",
"payment_status": "paid",
"is_individual": true,
"turnaround_type": "standard",
"translation_preference_type": "documents_in_english",
"physical_copy": true,
"cc_emails": [
"<string>"
],
"subtotal": 123,
"total": 123,
"last_activity_at": "<string>",
"unsubscribed_at": "<string>",
"paid_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
},
"documents": [
{
"id": "<string>",
"title": "<string>",
"document_type": "credential_evaluation",
"document_category": "vital",
"document_role": "source",
"file_name": "<string>",
"file_ext": "<string>",
"mime_type": "<string>",
"size": 123,
"page_count": 123,
"word_count": 123,
"character_count": 123,
"source_language_code": "<string>",
"source_language": "<string>",
"metadata": [
"<unknown>"
],
"analysis_completed_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}
],
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
},
"meta": {
"current_page": 2,
"from": 2,
"last_page": 2,
"links": [
{
"url": "<string>",
"label": "<string>",
"active": true
}
],
"path": "<string>",
"per_page": 1,
"to": 2,
"total": 1
}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Available sorts are created_at, number, status, expires_at, requested_at. You can sort by multiple options by separating them with a comma. To sort in descending order, use - sign in front of the sort, for example: -created_at.
List Quotes
curl --request GET \
--url https://api.fortiseval.com/v1/quotes \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.fortiseval.com/v1/quotes"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.fortiseval.com/v1/quotes', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.fortiseval.com/v1/quotes",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fortiseval.com/v1/quotes"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fortiseval.com/v1/quotes")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fortiseval.com/v1/quotes")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "<string>",
"url": "<string>",
"number": "<string>",
"status": "pending",
"quote_type": "translation",
"requested_turnaround": "standard",
"tat_value": 123,
"tat_range": "hour",
"turnaround_label": "<string>",
"has_guaranteed_delivery": true,
"guaranteed_delivery_at": "<string>",
"total_cents": 123,
"total": "<string>",
"expires_at": "<string>",
"requested_at": "<string>",
"approved_at": "<string>",
"canceled_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"items": [
{
"quantity": 123,
"price": 123,
"subtotal": 123,
"currency": "<string>",
"service_name": "<string>",
"service_code": "<string>"
}
],
"cart": {
"id": "<string>",
"number": "<string>",
"status": "in_progress",
"payment_status": "paid",
"is_individual": true,
"turnaround_type": "standard",
"translation_preference_type": "documents_in_english",
"physical_copy": true,
"cc_emails": [
"<string>"
],
"subtotal": 123,
"total": 123,
"last_activity_at": "<string>",
"unsubscribed_at": "<string>",
"paid_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
},
"documents": [
{
"id": "<string>",
"title": "<string>",
"document_type": "credential_evaluation",
"document_category": "vital",
"document_role": "source",
"file_name": "<string>",
"file_ext": "<string>",
"mime_type": "<string>",
"size": 123,
"page_count": 123,
"word_count": 123,
"character_count": 123,
"source_language_code": "<string>",
"source_language": "<string>",
"metadata": [
"<unknown>"
],
"analysis_completed_at": "<string>",
"created_at": "<string>",
"updated_at": "<string>"
}
]
}
],
"links": {
"first": "<string>",
"last": "<string>",
"prev": "<string>",
"next": "<string>"
},
"meta": {
"current_page": 2,
"from": 2,
"last_page": 2,
"links": [
{
"url": "<string>",
"label": "<string>",
"active": true
}
],
"path": "<string>",
"per_page": 1,
"to": 2,
"total": 1
}
}