Notifications
What the app told people, and their delivery preferences.
List notifications
/api/v1/notificationsQuery parameters
filterstring- A FiltrQL expression, url-encoded. Combine with AND / OR and parentheses. See the Filtering page for the full operator list, or call /filter-reference for the live one.
status = 'PASSED' AND executedAt > now-7dsortstring- Comma-separated field list. Prefix a field with a minus for descending order.
-createdAt,namepage[number]integer- Which page to return, starting at 1.
2page[size]integer- Results per page. Defaults to 25, and the maximum is 100.
50includestring- Comma-separated relationships to side-load into the response, saving a second request. Chains up to 3 deep.
requirement,folderfields[type]string- Return only these attributes for the named resource type - a sparse fieldset. Cuts payload size sharply on wide entities.
fields[test_cases]=name,status
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+json
Attributes returned19
actorUserIduuid | nullcreatedAtdate-timecreatedByuuid | nulliduuidisReadbooleanmessagestring | nullorganizationIduuidprojectExternalIdstring | null
Show the remaining 11
projectIduuidreadAtdate-time | nullrecipientUserIduuidrelatedEntityIduuid | nullrelatedEntityKeystring | nullrelatedEntityNamestring | nullrelatedEntityTypestring | nullTEST_CASETEST_CYCLETEST_CASE_EXECUTIONREQUIREMENTTEST_COLLECTIONTEST_CAMPAIGNTEST_CASE_REVIEWtitlestringtypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMupdatedAtdate-timeupdatedByuuid | null
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notifications?page%5Bsize%5D=25" \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"data": [
{
"type": "notifications",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"actorUserId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"isRead": true,
"message": "string",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectExternalId": "string"
}
}
],
"meta": {
"totalCount": 128
},
"links": {
"first": "/api/v1/notifications?page[number]=1",
"next": "/api/v1/notifications?page[number]=2"
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Create a notification
/api/v1/notificationsNeeds a read-and-write token. A read-only token gets 403.
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+jsonContent-Typestringrequired- Must be application/vnd.api+json on any request with a body. Any other value returns 415 Unsupported Media Type.
application/vnd.api+json
Attributes you can send19
organizationIduuidrequiredprojectIduuidrequiredrecipientUserIduuidrequiredtitlestringrequiredtypestringrequiredREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMactorUserIduuid | nullcreatedAtdate-timecreatedByuuid | nulliduuidisReadbooleanmessagestring | nullprojectExternalIdstring | nullreadAtdate-time | nullrelatedEntityIduuid | nullrelatedEntityKeystring | nullrelatedEntityNamestring | nullrelatedEntityTypestring | nullTEST_CASETEST_CYCLETEST_CASE_EXECUTIONREQUIREMENTTEST_COLLECTIONTEST_CAMPAIGNTEST_CASE_REVIEWupdatedAtdate-timeupdatedByuuid | null
Attributes returned19
actorUserIduuid | nullcreatedAtdate-timecreatedByuuid | nulliduuidisReadbooleanmessagestring | nullorganizationIduuidprojectExternalIdstring | null
Show the remaining 11
projectIduuidreadAtdate-time | nullrecipientUserIduuidrelatedEntityIduuid | nullrelatedEntityKeystring | nullrelatedEntityNamestring | nullrelatedEntityTypestring | nullTEST_CASETEST_CYCLETEST_CASE_EXECUTIONREQUIREMENTTEST_COLLECTIONTEST_CAMPAIGNTEST_CASE_REVIEWtitlestringtypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMupdatedAtdate-timeupdatedByuuid | null
Responses
- 201Created.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notifications" \
-X POST \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-d '{
"data": {
"type": "notifications",
"attributes": {
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"recipientUserId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"title": "Checkout rejects an expired card",
"type": "REVIEW_REQUESTED",
"createdAt": "2026-08-18T09:30:00Z"
}
}
}'application/vnd.api+json
{
"data": [
{
"type": "notifications",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"actorUserId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"isRead": true,
"message": "string",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectExternalId": "string"
}
}
],
"meta": {
"totalCount": 128
},
"links": {
"first": "/api/v1/notifications?page[number]=1",
"next": "/api/v1/notifications?page[number]=2"
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Get a notification
/api/v1/notifications/{id}Path parameters
idstringrequired- The resource id (a UUID).
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+json
Attributes returned19
actorUserIduuid | nullcreatedAtdate-timecreatedByuuid | nulliduuidisReadbooleanmessagestring | nullorganizationIduuidprojectExternalIdstring | null
Show the remaining 11
projectIduuidreadAtdate-time | nullrecipientUserIduuidrelatedEntityIduuid | nullrelatedEntityKeystring | nullrelatedEntityNamestring | nullrelatedEntityTypestring | nullTEST_CASETEST_CYCLETEST_CASE_EXECUTIONREQUIREMENTTEST_COLLECTIONTEST_CAMPAIGNTEST_CASE_REVIEWtitlestringtypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMupdatedAtdate-timeupdatedByuuid | null
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notifications/3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33" \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"data": {
"type": "notifications",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"actorUserId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"isRead": true,
"message": "string",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectExternalId": "string"
}
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Update a notification
/api/v1/notifications/{id}Needs a read-and-write token. A read-only token gets 403.
Path parameters
idstringrequired- The resource id (a UUID).
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+jsonContent-Typestringrequired- Must be application/vnd.api+json on any request with a body. Any other value returns 415 Unsupported Media Type.
application/vnd.api+json
Attributes you can send19
actorUserIduuid | nullcreatedAtdate-timecreatedByuuid | nulliduuidisReadbooleanmessagestring | nullorganizationIduuidprojectExternalIdstring | nullprojectIduuidreadAtdate-time | nullrecipientUserIduuidrelatedEntityIduuid | nullrelatedEntityKeystring | nullrelatedEntityNamestring | nullrelatedEntityTypestring | nullTEST_CASETEST_CYCLETEST_CASE_EXECUTIONREQUIREMENTTEST_COLLECTIONTEST_CAMPAIGNTEST_CASE_REVIEWtitlestringtypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMupdatedAtdate-timeupdatedByuuid | null
Attributes returned19
actorUserIduuid | nullcreatedAtdate-timecreatedByuuid | nulliduuidisReadbooleanmessagestring | nullorganizationIduuidprojectExternalIdstring | null
Show the remaining 11
projectIduuidreadAtdate-time | nullrecipientUserIduuidrelatedEntityIduuid | nullrelatedEntityKeystring | nullrelatedEntityNamestring | nullrelatedEntityTypestring | nullTEST_CASETEST_CYCLETEST_CASE_EXECUTIONREQUIREMENTTEST_COLLECTIONTEST_CAMPAIGNTEST_CASE_REVIEWtitlestringtypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMupdatedAtdate-timeupdatedByuuid | null
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notifications/3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33" \
-X PATCH \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-d '{
"data": {
"type": "notifications",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"actorUserId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"isRead": true,
"message": "string"
}
}
}'application/vnd.api+json
{
"data": {
"type": "notifications",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"actorUserId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"isRead": true,
"message": "string",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectExternalId": "string"
}
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Delete a notification
/api/v1/notifications/{id}Needs a read-and-write token. A read-only token gets 403.
Path parameters
idstringrequired- The resource id (a UUID).
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+jsonContent-Typestringrequired- Must be application/vnd.api+json on any request with a body. Any other value returns 415 Unsupported Media Type.
application/vnd.api+json
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notifications/3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33" \
-X DELETE \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"data": {
"type": "notifications",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {}
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Aggregate notifications
/api/v1/notifications/aggregateHeaders
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+json
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notifications/aggregate" \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"meta": {
"count": 128
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}List notification preferences
/api/v1/notification_preferencesQuery parameters
filterstring- A FiltrQL expression, url-encoded. Combine with AND / OR and parentheses. See the Filtering page for the full operator list, or call /filter-reference for the live one.
status = 'PASSED' AND executedAt > now-7dsortstring- Comma-separated field list. Prefix a field with a minus for descending order.
-createdAt,namepage[number]integer- Which page to return, starting at 1.
2page[size]integer- Results per page. Defaults to 25, and the maximum is 100.
50includestring- Comma-separated relationships to side-load into the response, saving a second request. Chains up to 3 deep.
requirement,folderfields[type]string- Return only these attributes for the named resource type - a sparse fieldset. Cuts payload size sharply on wide entities.
fields[test_cases]=name,status
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+json
Attributes returned10
createdAtdate-timecreatedByuuid | nulliduuidinAppEnabledbooleannotificationTypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMorganizationIduuidprojectIduuid | nullupdatedAtdate-time
Show the remaining 2
updatedByuuid | nulluserIduuid
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notification_preferences?page%5Bsize%5D=25" \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"data": [
{
"type": "notification_preferences",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"inAppEnabled": true,
"notificationType": "REVIEW_REQUESTED",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"updatedBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33"
}
}
],
"meta": {
"totalCount": 128
},
"links": {
"first": "/api/v1/notification_preferences?page[number]=1",
"next": "/api/v1/notification_preferences?page[number]=2"
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Create a notification preference
/api/v1/notification_preferencesNeeds a read-and-write token. A read-only token gets 403.
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+jsonContent-Typestringrequired- Must be application/vnd.api+json on any request with a body. Any other value returns 415 Unsupported Media Type.
application/vnd.api+json
Attributes you can send10
notificationTypestringrequiredREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMorganizationIduuidrequireduserIduuidrequiredcreatedAtdate-timecreatedByuuid | nulliduuidinAppEnabledbooleanprojectIduuid | nullupdatedAtdate-timeupdatedByuuid | null
Attributes returned10
createdAtdate-timecreatedByuuid | nulliduuidinAppEnabledbooleannotificationTypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMorganizationIduuidprojectIduuid | nullupdatedAtdate-time
Show the remaining 2
updatedByuuid | nulluserIduuid
Responses
- 201Created.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notification_preferences" \
-X POST \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-d '{
"data": {
"type": "notification_preferences",
"attributes": {
"notificationType": "REVIEW_REQUESTED",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"userId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33"
}
}
}'application/vnd.api+json
{
"data": [
{
"type": "notification_preferences",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"inAppEnabled": true,
"notificationType": "REVIEW_REQUESTED",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"updatedBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33"
}
}
],
"meta": {
"totalCount": 128
},
"links": {
"first": "/api/v1/notification_preferences?page[number]=1",
"next": "/api/v1/notification_preferences?page[number]=2"
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Get a notification preference
/api/v1/notification_preferences/{id}Path parameters
idstringrequired- The resource id (a UUID).
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+json
Attributes returned10
createdAtdate-timecreatedByuuid | nulliduuidinAppEnabledbooleannotificationTypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMorganizationIduuidprojectIduuid | nullupdatedAtdate-time
Show the remaining 2
updatedByuuid | nulluserIduuid
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notification_preferences/3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33" \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"data": {
"type": "notification_preferences",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"inAppEnabled": true,
"notificationType": "REVIEW_REQUESTED",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"updatedBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33"
}
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Update a notification preference
/api/v1/notification_preferences/{id}Needs a read-and-write token. A read-only token gets 403.
Path parameters
idstringrequired- The resource id (a UUID).
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+jsonContent-Typestringrequired- Must be application/vnd.api+json on any request with a body. Any other value returns 415 Unsupported Media Type.
application/vnd.api+json
Attributes you can send10
createdAtdate-timecreatedByuuid | nulliduuidinAppEnabledbooleannotificationTypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMorganizationIduuidprojectIduuid | nullupdatedAtdate-timeupdatedByuuid | nulluserIduuid
Attributes returned10
createdAtdate-timecreatedByuuid | nulliduuidinAppEnabledbooleannotificationTypestringREVIEW_REQUESTEDREVIEW_COMPLETEDTEST_CYCLE_ASSIGNEDEXECUTION_ASSIGNEDEXECUTION_COMPLETEDTEST_CASE_STATUS_CHANGEDMENTIONSYSTEMorganizationIduuidprojectIduuid | nullupdatedAtdate-time
Show the remaining 2
updatedByuuid | nulluserIduuid
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notification_preferences/3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33" \
-X PATCH \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json" \
-H "Content-Type: application/vnd.api+json" \
-d '{
"data": {
"type": "notification_preferences",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"inAppEnabled": true,
"notificationType": "REVIEW_REQUESTED",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33"
}
}
}'application/vnd.api+json
{
"data": {
"type": "notification_preferences",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {
"createdAt": "2026-08-18T09:30:00Z",
"updatedAt": "2026-08-18T09:30:00Z",
"createdBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"inAppEnabled": true,
"notificationType": "REVIEW_REQUESTED",
"organizationId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"projectId": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"updatedBy": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33"
}
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Delete a notification preference
/api/v1/notification_preferences/{id}Needs a read-and-write token. A read-only token gets 403.
Path parameters
idstringrequired- The resource id (a UUID).
Headers
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+jsonContent-Typestringrequired- Must be application/vnd.api+json on any request with a body. Any other value returns 415 Unsupported Media Type.
application/vnd.api+json
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notification_preferences/3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33" \
-X DELETE \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"data": {
"type": "notification_preferences",
"id": "3f2b9c14-8d5e-4a71-9f60-2c1e7b4a8d33",
"attributes": {}
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Aggregate notification preferences
/api/v1/notification_preferences/aggregateHeaders
Authorizationstringrequired- Your API token as a bearer credential.
Bearer bst_pat_YOUR_TOKEN_HEREAcceptstringrequired- Must be application/vnd.api+json. Any other value returns 406 Not Acceptable.
application/vnd.api+json
Responses
- 200OK.
- 403The token is missing, expired, revoked, aimed at another Space, or lacks write access.
- 404No such resource, or it is outside the Space your token reaches.
- 406The Accept header did not include application/vnd.api+json.
- 429Rate limit exceeded: 100 requests a minute per token, shared with MCP.
curl
curl "https://prod-eu.getbestest.com/api/v1/notification_preferences/aggregate" \
-H "Authorization: Bearer bst_pat_YOUR_TOKEN_HERE" \
-H "Accept: application/vnd.api+json"application/vnd.api+json
{
"meta": {
"count": 128
}
}Show an error response
any 4xx
{
"errors": [
{
"status": "403",
"title": "Forbidden",
"code": "FORBIDDEN",
"detail": "Access denied.",
"source": {
"pointer": "/data"
}
}
]
}Relationship endpoints
JSON:API exposes each relationship at its own URL. They take the same headers and return the same envelope as everything above, so they are listed rather than documented one by one. In most cases ?include= on the parent request is the better tool: one round trip instead of two.
Show all 22
- GET
/api/v1/notifications/{id}/fkNotificationsActorUser - GET
/api/v1/notifications/{id}/fkNotificationsCreatedByUser - GET
/api/v1/notifications/{id}/fkNotificationsRecipientUser - GET
/api/v1/notifications/{id}/fkNotificationsUpdatedByUser - GET
/api/v1/notifications/{id}/organization - GET
/api/v1/notifications/{id}/project - GET
/api/v1/notifications/{id}/relationships/fkNotificationsActorUser - GET
/api/v1/notifications/{id}/relationships/fkNotificationsCreatedByUser - GET
/api/v1/notifications/{id}/relationships/fkNotificationsRecipientUser - GET
/api/v1/notifications/{id}/relationships/fkNotificationsUpdatedByUser - GET
/api/v1/notifications/{id}/relationships/organization - GET
/api/v1/notifications/{id}/relationships/project - GET
/api/v1/notification_preferences/{id}/fkNotificationPrefsCreatedByUser - GET
/api/v1/notification_preferences/{id}/fkNotificationPrefsUpdatedByUser - GET
/api/v1/notification_preferences/{id}/fkNotificationPrefsUserUser - GET
/api/v1/notification_preferences/{id}/organization - GET
/api/v1/notification_preferences/{id}/project - GET
/api/v1/notification_preferences/{id}/relationships/fkNotificationPrefsCreatedByUser - GET
/api/v1/notification_preferences/{id}/relationships/fkNotificationPrefsUpdatedByUser - GET
/api/v1/notification_preferences/{id}/relationships/fkNotificationPrefsUserUser - GET
/api/v1/notification_preferences/{id}/relationships/organization - GET
/api/v1/notification_preferences/{id}/relationships/project
