Get seat tracking limit request
curl --request GET \
--url https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId}"
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))
}{
"data": {
"request": {
"id": "req_abc",
"budgetId": "budget-1",
"requestNumber": 1,
"displayKey": "ENG-1",
"userId": "user-1",
"requestedByUserId": "user-1",
"currentLimit": 50,
"proposedLimit": 100,
"appliedLimit": null,
"justification": "Need more headroom for Q3 projects.",
"origin": "self",
"durationIntent": "ongoing",
"reviewAgainOn": null,
"status": "open",
"decidedByUserId": null,
"decidedAt": null,
"contextSnapshot": null,
"createdAt": "2026-07-17T12:00:00.000Z",
"updatedAt": "2026-07-17T12:00:00.000Z",
"externalLinks": []
},
"comments": [
{
"id": "comment-1",
"requestId": "req_abc",
"authorUserId": "user-1",
"authorRole": "requester",
"body": "Need more headroom for Q3 projects.",
"isSystem": false,
"createdAt": "2026-07-17T12:00:00.000Z",
"updatedAt": "2026-07-17T12:00:00.000Z"
}
]
}
}{
"error": {
"code": "forbidden_scope",
"message": "API key is missing required scope: budgets:write",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "forbidden_scope",
"message": "API key is missing required scope: budgets:write",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}Seat Tracking
Get seat tracking limit request
Get a single limit request with comments and history.
GET
https://api.nops.io
/
v1
/
seat-tracking
/
projects
/
{projectId}
/
requests
/
{requestId}
Get seat tracking limit request
curl --request GET \
--url https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.nops.io/v1/seat-tracking/projects/{projectId}/requests/{requestId}"
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))
}{
"data": {
"request": {
"id": "req_abc",
"budgetId": "budget-1",
"requestNumber": 1,
"displayKey": "ENG-1",
"userId": "user-1",
"requestedByUserId": "user-1",
"currentLimit": 50,
"proposedLimit": 100,
"appliedLimit": null,
"justification": "Need more headroom for Q3 projects.",
"origin": "self",
"durationIntent": "ongoing",
"reviewAgainOn": null,
"status": "open",
"decidedByUserId": null,
"decidedAt": null,
"contextSnapshot": null,
"createdAt": "2026-07-17T12:00:00.000Z",
"updatedAt": "2026-07-17T12:00:00.000Z",
"externalLinks": []
},
"comments": [
{
"id": "comment-1",
"requestId": "req_abc",
"authorUserId": "user-1",
"authorRole": "requester",
"body": "Need more headroom for Q3 projects.",
"isSystem": false,
"createdAt": "2026-07-17T12:00:00.000Z",
"updatedAt": "2026-07-17T12:00:00.000Z"
}
]
}
}{
"error": {
"code": "forbidden_scope",
"message": "API key is missing required scope: budgets:write",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "forbidden_scope",
"message": "API key is missing required scope: budgets:write",
"request_id": "550e8400-e29b-41d4-a716-446655440000"
}
}Authorizations
API key from Settings → Security → API Keys. Pass as Authorization: Bearer YOUR_API_KEY.
Path Parameters
Seat tracking project ID
Limit request ID
Response
Get seat tracking limit request
JSON object
Was this page helpful?
⌘I