TISC TAXII Server API
Provides Trusted Automated Exchange of Intelligence Information (TAXII) server endpoints for sharing threat intelligence data in Threat Intelligence Security Center (TISC).
This API requires the Threat Intelligence Security Center application, which is available on the ServiceNow Store.
For additional information about TISC, see Threat Intelligence Security Center.
This API runs in the sn_sec_tisc namespace. The calling user must have the sn_sec_tisc.taxii_server_api_user role.
The current version of this API is v2. The following capabilities are supported in each version.
- v1
- Supports sharing threat intelligence data from one ServiceNow instance to another.
- v2
-
- Adds support for sharing threat intelligence data from a ServiceNow instance to an external system.
- Supports trailing slashes.
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/taxii2
Discovery endpoint for the TAXII server. Provides metadata about available API roots, services offered by the TISC TAXII server, and how to interact with it.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/taxii2
Default URL: /api/sn_sec_tisc/taxii_server/taxii2
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| Name | Description |
|---|---|
| None |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| api_roots | List of API roots available in the server. Remarque :
The only API root currently supported by Threat Intelligence Security Center is api/sn_sec_tisc/taxii_server/api_root.Data type: Array |
| contact | Contact information related to the TAXII server. Data type: String |
| default | Default API root that a TAXII client can use. Data type: String |
| description | Description of the TAXII server. Data type: String |
| title | Title of the TAXII server. Data type: String |
cURL request
This example returns metadata about available API roots.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/taxii2" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body.
{
"title": "ServiceNow TAXII Server",
"description": "Discovery endpoint for sharing cyber threat intelligence via TAXII",
"contact": "TAXII Server Contact",
"default": "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root",
"api_roots": [
"https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root"
]
}
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}
Provides information about an API root.
api/sn_sec_tisc/taxii_server/api_root.URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| Name | Description |
|---|---|
| None |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| description | Description of the API root. Data type: String |
| max_content_length | Maximum size of a request body that can be supported by the TAXII server. Data type: Number Unit: Octets (8-bit bytes) |
| title | Title of the API root. Data type: String |
| versions | List of TAXII versions that the API root is compatible with. Remarque :
The only version currently supported is TAXII 2.1, so this array contains only the value application/taxii+json;version=2.1.Data type: Array |
cURL request
This example returns information about an API root.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body.
{
"title": "ServiceNow TAXII Server",
"description": "API root endpoint for sharing cyber threat intelligence via TAXII",
"versions": [
"application/taxii+json;version=2.1"
],
"max_content_length": 1024
}
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}/collections
Returns data about all available TAXII collections at the specified API root.
A TAXII collection is a logical grouping of threat intelligence data that enables the exchange of information between a TAXII client and a TAXII server.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}/collections
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}/collections
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| Name | Description |
|---|---|
| None |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 404 | Not found. The requested item wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| collections | List of collection objects available at the requested API root. Data type: Array |
| collections.can_read | Flag that indicates whether the calling user can read data from the collection. Valid values:
Data type: Boolean |
| collections.can_write | Flag that indicates whether the calling user can write data to the collection. Valid values:
Remarque :
The TISC TAXII server doesn't support writing data to collections. Data type: Boolean |
| collections.description | Description of the collection. Data type: String |
| collections.id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| collections.media_types | List of supported media types for objects in the collection. Remarque :
The only version currently supported is TAXII 2.1, so this array contains only the value application/taxii+json;version=2.1.Data type: Array |
| collections.title | Title of the collection. Data type: String |
cURL request
This example returns data about all available TAXII collections at the specified API root.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root/collections" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body.
{
"collections": [
{
"id": "308accee37cd22107253a2d734924baf",
"title": " Collection-1",
"can_read": true,
"can_write": false,
"media_types": [
"application/taxii+json;version=2.1"
]
},
{
"id": "308accee37cd22107253a2d734926ghy",
"title": " Collection-2",
"can_read": true,
"can_write": false,
"media_types": [
"application/taxii+json;version=2.1"
]
}
]
}
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}
Returns data about a specified collection.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}/collections/{id}
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}/collections/{id}
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| Name | Description |
|---|---|
| None |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 404 | Not found. The requested item wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| can_read | Flag that indicates whether the calling user can read data from the collection. Valid values:
Data type: Boolean |
| can_write | Flag that indicates whether the calling user can write data to the collection. Valid values:
Remarque :
The TISC TAXII server doesn't support writing data to collections. Data type: Boolean |
| description | Description of the collection. Data type: String |
| id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| media_types | List of supported media types for objects in the collection. Remarque :
The only version currently supported is TAXII 2.1, so this array contains only the value application/taxii+json;version=2.1.Data type: Array |
| title | Title of the collection. Data type: String |
cURL request
This example returns data about a specified collection.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root/collections/308accee37cd22107253a2d734924baf" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body.
{
"id": "308accee37cd22107253a2d734924baf",
"title": " Collection-1",
"can_read": true,
"can_write": false,
"media_types": [
"application/taxii+json;version=2.1"
]
}
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects
Returns objects from a specified collection.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}/collections/{id}/objects
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| Name | Description |
|---|---|
| added_after | Returns only objects added after the specified time. The timestamp must be in ISO 8601 format, such as 2025-10-27T16:36:20.000Z.Data type: String |
| limit | Maximum number of records to return. For requests that exceed this number of records, use the next parameter to paginate record retrieval. Data type: Number Default: 100 records per page Maximum: 1000 |
| match[id] | Unique identifiers of the objects to return, formatted as a string of comma separated values. Object ids can be retrieved using the GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects endpoint. They are located in the objects.id parameter in the response body. Data type: String |
| match[spec_version] | Specification versions of objects to return, formatted as a string of comma separated values. Remarque : The only value currently supported is 2.1.Data type: String |
| match[type] | Types of objects to return, formatted as a string of comma separated values. Data type: String |
| match[version] | Versions of objects to return, formatted as a string of comma separated values. Data type: String |
| next | Starting page index at which to begin retrieving records. Use this value to paginate record retrieval. This functionality enables the retrieval of all records, regardless of the number of records, in small manageable
chunks. Data type: Number Default: 0 |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 404 | Not found. The requested item wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| more | Flag that indicates whether the response has a next page. Valid values:
Data type: Boolean |
| next | Index of the next page of the response. Data type: String |
| objects | Array of objects in the collection. Objects are returned in standard STIX format. The properties included in each object vary based on the object type. Data type: Array |
cURL request
This example returns all objects in the specified collection.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root/collections/308accee37cd22107253a2d734924baf/objects" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body containing one URL object.
{
"more": false,
"objects": [
{
"id": "url--624ca0a8-ffd1-5210-8253-ffffffffffbe",
"type": "url",
"defanged": false,
"value": "http://testurl.com",
"object_marking_refs": [
"marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9"
],
"extensions": {
"extension-definition--ef28a0ac-ff11-4210-8253-ffffffffffbd": {
"x_is_false_positive": false,
"x_domain": "testurl.com",
"x_status": "Active",
"x_source_count": 2,
"x_threat_score": 50,
"extension_type": "property-extension"
}
}
},
{
"id": "indicator--657bef11-2b7c-4a50-8758-f8014391bff3",
"type": "indicator",
"spec_version": "2.1",
"created": "2025-10-24T14:09:23.000Z",
"modified": "2025-11-20T12:14:24.000Z",
"revoked": false,
"confidence": 75,
"object_marking_refs": [
"marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9"
],
"pattern": "url:value = 'http://testurl.com'",
"pattern_type": "stix",
"name": "Test Indicator",
"pattern_version": "2.1",
"valid_from": "2025-10-24T14:09:19.000Z",
"extensions": {
"extension-definition--4f5ba226-ff95-4210-8238-ffffffffff1d": {
"x_status": "Active",
"x_source_count": 1,
"x_used_for_detection": false,
"x_threat_level": "High",
"x_threat_severity": "High",
"x_ioc_classification": "Potential Threat",
"extension_type": "property-extension"
}
}
},
{
"name": "Test Campaign",
"id": "campaign--a02ce391-2b7c-4a50-8758-f8014391bf45",
"type": "campaign",
"spec_version": "2.1",
"created": "2025-10-24T14:12:19.000Z",
"modified": "2025-11-20T12:14:39.000Z",
"revoked": false,
"confidence": 75,
"object_marking_refs": [
"marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9"
],
"aliases": [
"Test Campaign"
],
"extensions": {
"extension-definition--8b5ba226-ff95-4210-8238-ffffffffff1d": {
"x_source_count": 1,
"x_threat_level": "High",
"x_threat_severity": "High",
"x_status": "Active",
"extension_type": "property-extension"
}
}
}
]
}
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects/{object_id}
Returns a specified object from a collection.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}/collections/{id}/objects/{object_id}
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects/{object_id}
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| object_id | Unique identifier of the object. Object ids can be retrieved using the GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects endpoint. They are located in the objects.id parameter in the response body. Data type: String |
| Name | Description |
|---|---|
| added_after | Returns only objects added after the specified time. The timestamp must be in ISO 8601 format, such as 2025-10-27T16:36:20.000Z.Data type: String |
| limit | Maximum number of records to return. For requests that exceed this number of records, use the next parameter to paginate record retrieval. Data type: Number Default: 100 records per page Maximum: 1000 |
| match[spec_version] | Specification versions of objects to return, formatted as a string of comma separated values. Remarque : The only value currently supported is 2.1.Data type: String |
| match[version] | Versions of objects to return, formatted as a string of comma separated values. Data type: String |
| next | Starting page index at which to begin retrieving records. Use this value to paginate record retrieval. This functionality enables the retrieval of all records, regardless of the number of records, in small manageable
chunks. Data type: Number Default: 0 |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 404 | Not found. The requested item wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| objects | The requested object returned in standard STIX format. The properties included in the object vary based on the object type. Data type: Array |
cURL request
This example returns a specified URL object.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root/collections/308accee37cd22107253a2d734924baf/objects/url--624ca0a8-ffd1-5210-8253-ffffffffffbe" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body.
{
"objects": [
{
"id": "url--624ca0a8-ffd1-5210-8253-ffffffffffbe",
"type": "url",
"defanged": false,
"value": "http://testurl.com ",
"object_marking_refs": [
"marking-definition--613f2e26-407d-48c7-9eca-b8e91df99dc9"
],
"extensions": {
"extension-definition--ef28a0ac-ff11-4210-8253-ffffffffffbd": {
"x_is_false_positive": false,
"x_domain": "testurl.com",
"x_status": "Active",
"x_source_count": 2,
"x_threat_score": 50,
"extension_type": "property-extension"
}
}
}
]
}
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects/{object_id}/versions
Returns all versions of a specified object from a collection.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}/collections/{id}/objects/{object_id}/versions
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects/{object_id}/versions
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| object_id | Unique identifier of the object. Object ids can be retrieved using the GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects endpoint. They are located in the objects.id parameter in the response body. Data type: String |
| Name | Description |
|---|---|
| added_after | Returns only objects added after the specified time. The timestamp must be in ISO 8601 format, such as 2025-10-27T16:36:20.000Z.Data type: String |
| limit | Maximum number of records to return. For requests that exceed this number of records, use the next parameter to paginate record retrieval. Data type: Number Default: 100 records per page Maximum: 1000 |
| match[spec_version] | Specification versions of objects to return, formatted as a string of comma separated values. Remarque : The only value currently supported is 2.1.Data type: String |
| next | Starting page index at which to begin retrieving records. Use this value to paginate record retrieval. This functionality enables the retrieval of all records, regardless of the number of records, in small manageable
chunks. Data type: Number Default: 0 |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 404 | Not found. The requested item wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| versions | List of versions of the object. Data type: Array |
cURL request
This example returns all versions of a specified object from a collection.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root/collections/308accee37cd22107253a2d734924baf/objects/url--624ca0a8-ffd1-5210-8253-ffffffffffbe/versions" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body.
{
"versions": [
"2025-11-20T12:16:38.000000Z",
"2025-11-20T12:18:51.000000Z"
]
TISC TAXII Server - GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/manifest
Provides a summary of the objects in a collection.
This endpoint enables clients to quickly understand what data is available without retrieving the full objects.
URL format
Versioned URL: /api/sn_sec_tisc/{api_version}/taxii_server/{api_root}/collections/{id}/manifest
Default URL: /api/sn_sec_tisc/taxii_server/{api_root}/collections/{id}/manifest
Supported request parameters
| Name | Description |
|---|---|
| api_version | Optional. Version of the endpoint to access. For example, v1 or v2. Only specify this value to use an endpoint version other than the
latest.
Data type: String |
| api_root | The API root to retrieve information about. Remarque : The only value currently supported is api_root.Data type: String |
| id | Sys_id of the collection. Table: TAXII Collection [sn_sec_tisc_taxii_server_collection] Data type: String |
| Name | Description |
|---|---|
| added_after | Returns only objects added after the specified time. The timestamp must be in ISO 8601 format, such as 2025-10-27T16:36:20.000Z.Data type: String |
| limit | Maximum number of records to return. For requests that exceed this number of records, use the next parameter to paginate record retrieval. Data type: Number Default: 100 records per page Maximum: 1000 |
| match[id] | Unique identifiers of the objects to return, formatted as a string of comma separated values. Object ids can be retrieved using the GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects endpoint. They are located in the objects.id parameter in the response body. Data type: String |
| match[spec_version] | Specification versions of objects to return, formatted as a string of comma separated values. Remarque : The only value currently supported is 2.1.Data type: String |
| match[type] | Types of objects to return, formatted as a string of comma separated values. Data type: String |
| match[version] | Versions of objects to return, formatted as a string of comma separated values. Data type: String |
| next | Starting page index at which to begin retrieving records. Use this value to paginate record retrieval. This functionality enables the retrieval of all records, regardless of the number of records, in small manageable
chunks. Data type: Number Default: 0 |
| Name | Description |
|---|---|
| None |
Headers
The following request and response headers apply to this HTTP action only, or apply to this action in a distinct way. For a list of general headers used in the REST API, see Supported REST API headers.
| Header | Description |
|---|---|
| Accept | Data format of the response body. Only supports application/taxii+json;version=2.1. |
| Header | Description |
|---|---|
| Content-Type | Data format of the response body. Only supports application/taxii+json;version=2.1. |
Status codes
The following status codes apply to this HTTP action. For a list of possible status codes used in the REST API, see REST API HTTP response codes.
| Status code | Description |
|---|---|
| 200 | Successful. The request was successfully processed. |
| 400 | Bad Request. A bad request type or malformed request was detected. |
| 401 | Unauthorized. The user credentials are incorrect or have not been passed. |
| 404 | Not found. The requested item wasn't found. |
| 500 | Internal server error. An unexpected error occurred while processing the request. The response contains additional information about the error. |
Response body parameters (JSON)
| Name | Description |
|---|---|
| more | Flag that indicates whether the response has a next page. Valid values:
Data type: Boolean |
| next | Index of the next page of the response. Data type: String |
| objects | Array of manifests for each object in the collection. A manifest provides a brief overview of an object. Data type: Array |
| objects.date_added | Date the object was added to the collection in ISO 8601 format, such as 2025-10-27T16:36:20.000Z.Data type: String |
| objects.id | Unique identifier of the object. Object ids can be retrieved using the GET /sn_sec_tisc/taxii_server/{api_root}/collections/{id}/objects endpoint. They are located in the objects.id parameter in the response body. Data type: String |
| objects.media_types | Media type of the object. Remarque :
The only currently supported type is TAXII 2.1, so this value is always application/taxii+json;version=2.1.Data type: String |
| objects.version | Version of the object. Data type: String |
cURL request
This example returns manifests for all objects in a collection.
curl "https://instance.servicenow.com/api/sn_sec_tisc/taxii_server/api_root/collections/308accee37cd22107253a2d734924baf/manifest" \
--request GET \
--header "Accept:application/taxii+json;version=2.1" \
--user 'username':'password'
Response body containing a manifest for one object.
{
"more": false,
"objects": [
{
"version": "2025-11-20T12:16:38.000000Z",
"media_types": "application/taxii+json;version=2.1",
"id": "indicator--657bef11-2b7c-4a50-8758-f8014391bff3",
"date_added": "2025-11-20T04:16:38.000000Z"
},
{
"version": "2025-11-20T12:16:38.000000Z",
"media_types": "application/taxii+json;version=2.1",
"id": "campaign--a02ce391-2b7c-4a50-8758-f8014391bf45",
"date_added": "2025-11-20T04:16:38.000000Z"
},
{
"version": "2025-11-20T12:18:51.000000Z",
"media_types": "application/taxii+json;version=2.1",
"id": "url--624ca0a8-ffd1-5210-8253-ffffffffffbe",
"date_added": "2025-11-20T04:18:51.000000Z"
}
]
}