{ "info": { "_postman_id": "8979e517-28d6-47f9-b775-e37d746b10d4", "name": "ThoughtSpot Public REST 10.1.0.cl 26.3.0.cl API", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "lastUpdatedBy": "35240", "uid": "35240-8979e517-28d6-47f9-b775-e37d746b10d4" }, "item": [ { "name": "api", "item": [ { "name": "rest", "item": [ { "name": "2.0", "item": [ { "name": "security", "item": [ { "name": "metadata", "item": [ { "name": "fetch-object-privileges", "item": [ { "name": "fetch Object Privileges", "id": "664137ac-0f9b-4874-a911-70e34a050562", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"metadata\": [\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n }\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER_GROUP\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/fetch-object-privileges", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "fetch-object-privileges" ] }, "description": "\n Version: 26.3.0.cl or later\n\nThis API fetches the object privileges present for the given list of principals (user or group), on the given set of objects. It supports pagination, which can be enabled and configured using the request parameters. It provides users access to certain features based on privilege based access control.\n\n#### Usage guidelines\n\n- Specify the `type` (`USER` or `USER_GROUP`) and `identifier` (either GUID or name) of the principals for which you want to retrieve object privilege information in the `principals` array.\n- Specify the `type` (`LOGICAL_TABLE`) and `identifier` (either GUID or name) of the metadata objects for which you want to retrieve object privilege information in the `metadata` array. Only `LOGICAL_TABLE` metadata type is supported for now. It may be extended for other metadata types in future.\n- To control the offset from where principals have to be fetched, use `record_offset`. When `record_offset` is 0, information is fetched from the beginning.\n- To control the number of principals to be fetched, use `record_size`. Default `record_size` is 20.\n- Ensure `record_offset` for a subsequent request is one more than the value of `record_size` of the previous request.\n- Ensure using correct Authorization Bearer Token corresponding to specific user & org. \n\n#### Example request\n\n```json\n{\n \"principals\": [\n {\n \"type\": \"type-1\",\n \"identifier\": \"principal-guid-or-name-1\"\n },\n {\n \"type\": \"type-2\",\n \"identifier\": \"principal-guid-or-name-2\"\n }\n ],\n \"metadata\": [\n {\n \"type\": \"metadata-type-1\",\n \"identifier\": \"metadata-guid-or-name-1\"\n },\n {\n \"type\": \"metadata-type-2\",\n \"identifier\": \"metadata-guid-or-name-2\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}\n```\n\n\n#### Response format\n\nThe API returns an array of `metadata_object_privileges` objects wrapped in JSON. Each `metadata_object_privileges` object contains:\n- Metadata information (GUID, name and type)\n- Array of `principal_object_privilege_info`.\n- Each `principal_object_privilege_info` contains:\n - Principal type. All principals of this type are listed as described below.\n - Array of `principal_object_privileges`.\n - Each `principal_object_privileges` contains:\n - Principal information (GUID, name, subtype)\n - List of applied object level privileges.\n\n#### Example response\n\n```json\n{\n \"metadata_object_privileges\": [\n {\n \"metadata_id\": \"metadata-guid-1\",\n \"metadata_name\": \"metadata-name-1\",\n \"metadata_type\": \"metadata-type-1\",\n \"principal_object_privilege_info\": [\n {\n \"principal_type\": \"principal-type-1\",\n \"principal_object_privileges\": [\n {\n \"principal_id\": \"principal-guid-1\",\n \"principal_name\": \"principal-name-1\",\n \"principal_sub_type\": \"principal-sub-type-1\",\n \"object_privileges\": \"[object-privilege-1, object-privilege-2]\"\n },\n {\n \"principal_id\": \"principal-guid-2\",\n \"principal_name\": \"principal-name-2\",\n \"principal_sub_type\": \"principal-sub-type-2\",\n \"object_privileges\": \"[object-privilege-1, object-privilege-2]\"\n }\n ]\n },\n {\n \"principal_type\": \"principal-type-2\",\n \"principal_object_privileges\": [\n {\n \"principal_id\": \"principal-guid-3\",\n \"principal_name\": \"principal-guid-4\",\n \"principal_sub_type\": \"principal-sub-type-4\",\n \"object_privileges\": \"[object-privilege-1]\"\n }\n ]\n }\n ]\n },\n {\n \"metadata_id\": \"metadata-guid-2\",\n \"metadata_name\": \"metadata-name-2\",\n \"metadata_type\": \"metadata-type-2\",\n \"principal_object_privilege_info\": [\n {\n \"principal_type\": \"principal-type-1\",\n \"principal_object_privileges\": [\n {\n \"principal_id\": \"principal-guid-1\",\n \"principal_name\": \"principal-name-1\",\n \"principal_sub_type\": \"principal-sub-type-1\",\n \"object_privileges\": \"[object-privilege-3, object-privilege-4]\"\n },\n {\n \"principal_id\": \"principal-guid-2\",\n \"principal_name\": \"principal-name-2\",\n \"principal_sub_type\": \"principal-sub-type-2\",\n \"object_privileges\": \"[object-privilege-4]\"\n }\n ]\n }\n ]\n }\n ]\n}\n```\n\n\n\n#### Endpoint URL\n" }, "response": [ { "id": "8020a33e-b3fe-49f3-9312-8012d4429076", "name": "Fetching defined object privileges of metadata objects is successful.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"metadata\": [\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n }\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER_GROUP\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/fetch-object-privileges", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "fetch-object-privileges" ] } }, "status": "OK", "code": 200, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"metadata_object_privileges\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-8020a33e-b3fe-49f3-9312-8012d4429076" }, { "id": "fd281893-6cd3-45c4-a771-83c2063b1297", "name": "Invalid request.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"metadata\": [\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n }\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER_GROUP\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/fetch-object-privileges", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "fetch-object-privileges" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-fd281893-6cd3-45c4-a771-83c2063b1297" }, { "id": "601e2759-eb26-491c-8fd1-0116bbf0c297", "name": "Unauthorized access.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"metadata\": [\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n }\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER_GROUP\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/fetch-object-privileges", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "fetch-object-privileges" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-601e2759-eb26-491c-8fd1-0116bbf0c297" }, { "id": "70cedc8c-3c3d-4e86-8a08-2f0bc6e6d7e1", "name": "Forbidden access.", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"metadata\": [\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n }\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER_GROUP\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/fetch-object-privileges", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "fetch-object-privileges" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-70cedc8c-3c3d-4e86-8a08-2f0bc6e6d7e1" }, { "id": "05f0e5e4-f04a-4554-ac43-474e91c0a7d3", "name": "Unexpected error", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"metadata\": [\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"LOGICAL_TABLE\"\n }\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER_GROUP\"\n }\n ],\n \"record_offset\": 0,\n \"record_size\": 20\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/fetch-object-privileges", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "fetch-object-privileges" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-05f0e5e4-f04a-4554-ac43-474e91c0a7d3" } ], "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-664137ac-0f9b-4874-a911-70e34a050562" } ], "id": "143aa7e0-1597-4e2c-8106-9a145e07bc4e", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-143aa7e0-1597-4e2c-8106-9a145e07bc4e" }, { "name": "manage-object-privilege", "item": [ { "name": "manage Object Privilege", "id": "9fd47da7-c97f-4081-9dc0-e7a98409d4a2", "protocolProfileBehavior": { "disableBodyPruning": true }, "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" } ], "body": { "mode": "raw", "raw": "{\n \"operation\": \"ADD\",\n \"metadata_type\": \"LOGICAL_TABLE\",\n \"object_privilege_types\": [\n \"SPOTTER_COACHING_PRIVILEGE\",\n \"SPOTTER_COACHING_PRIVILEGE\"\n ],\n \"metadata_identifiers\": [\n \"\",\n \"\"\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/manage-object-privilege", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "manage-object-privilege" ] }, "description": "\n Version: 26.3.0.cl or later\n\nThis API allows the addition or deletion of object level privileges for a set of users and groups, on a set of metadata objects. It provides users to access certain features based on privilege based access control.\n\n#### Usage guidelines\n\n- Specify the `operation`. The supported operations are: `ADD`, `REMOVE`.\n- Specify the type of the objects on which the object privileges are being provided in `metadata_type`. Only `LOGICAL_TABLE` metadata type is supported for now. It may be extended for other metadata types in future.\n- Specify the list of object privilege types in the `object_privilege_types` array. The supported object privilege types are: `SPOTTER_COACHING_PRIVILEGE`.\n- Specify the identifiers (either GUID or name) for the metadata objects in the `metadata_identifiers` array.\n- Specify the `type` (`USER` or `USER_GROUP`) and `identifier` (either GUID or name) of the principals to which you want to apply the given operation and given object privileges in the `principals` array.\n- Ensure using correct Authorization Bearer Token corresponding to specific user & org.\n\n#### Example request\n\n```json\n{\n \"operation\": \"operation-type\",\n \"metadata_type\": \"metadata-type\",\n \"object_privilege_types\": [\"privilege-type-1\", \"privilege-type-2\"],\n \"metadata_identifiers\": [\"metadata-guid-or-name-1\", \"metadata-guid-or-name-1\"],\n \"principals\": [\n {\n \"type\": \"type-1\", \n \"identifier\": \"principal-guid-or-name-1\"\n },\n {\n \"type\": \"type-2\",\n \"identifier\": \"principal-guid-or-name-2\"\n }\n ]\n}\n```\n\n> ###### Note:\n> * Only admin users, users with edit access and users with coaching privilege on a given data-model can add or remove principals related to SPOTTER_COACHING_PRIVILEGE \n\n\n\n#### Endpoint URL\n" }, "response": [ { "id": "ed88a5ed-3b8d-40f5-8d67-bee23d4cd281", "name": "Object privileges added/removed successfully", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"operation\": \"ADD\",\n \"metadata_type\": \"LOGICAL_TABLE\",\n \"object_privilege_types\": [\n \"SPOTTER_COACHING_PRIVILEGE\",\n \"SPOTTER_COACHING_PRIVILEGE\"\n ],\n \"metadata_identifiers\": [\n \"\",\n \"\"\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/manage-object-privilege", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "manage-object-privilege" ] } }, "status": "No Content", "code": 204, "_postman_previewlanguage": "text", "header": [], "cookie": [], "responseTime": null, "body": null, "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-ed88a5ed-3b8d-40f5-8d67-bee23d4cd281" }, { "id": "3d7988d2-1ad6-4a6c-a898-3e79de0781ed", "name": "Invalid request", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"operation\": \"ADD\",\n \"metadata_type\": \"LOGICAL_TABLE\",\n \"object_privilege_types\": [\n \"SPOTTER_COACHING_PRIVILEGE\",\n \"SPOTTER_COACHING_PRIVILEGE\"\n ],\n \"metadata_identifiers\": [\n \"\",\n \"\"\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/manage-object-privilege", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "manage-object-privilege" ] } }, "status": "Bad Request", "code": 400, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-3d7988d2-1ad6-4a6c-a898-3e79de0781ed" }, { "id": "53419d64-d2ca-4f83-9c99-bfb236952f2f", "name": "Unauthorized access", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"operation\": \"ADD\",\n \"metadata_type\": \"LOGICAL_TABLE\",\n \"object_privilege_types\": [\n \"SPOTTER_COACHING_PRIVILEGE\",\n \"SPOTTER_COACHING_PRIVILEGE\"\n ],\n \"metadata_identifiers\": [\n \"\",\n \"\"\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/manage-object-privilege", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "manage-object-privilege" ] } }, "status": "Unauthorized", "code": 401, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-53419d64-d2ca-4f83-9c99-bfb236952f2f" }, { "id": "926d474c-c778-4a48-9857-7a3583542777", "name": "Forbidden access", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"operation\": \"ADD\",\n \"metadata_type\": \"LOGICAL_TABLE\",\n \"object_privilege_types\": [\n \"SPOTTER_COACHING_PRIVILEGE\",\n \"SPOTTER_COACHING_PRIVILEGE\"\n ],\n \"metadata_identifiers\": [\n \"\",\n \"\"\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/manage-object-privilege", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "manage-object-privilege" ] } }, "status": "Forbidden", "code": 403, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-926d474c-c778-4a48-9857-7a3583542777" }, { "id": "e18bd959-d884-4534-9230-867b6eb2018e", "name": "Unexpected error", "originalRequest": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" }, { "key": "Accept", "value": "application/json" }, { "description": "Added as a part of security scheme: bearer", "key": "Authorization", "value": "Bearer " } ], "body": { "mode": "raw", "raw": "{\n \"operation\": \"ADD\",\n \"metadata_type\": \"LOGICAL_TABLE\",\n \"object_privilege_types\": [\n \"SPOTTER_COACHING_PRIVILEGE\",\n \"SPOTTER_COACHING_PRIVILEGE\"\n ],\n \"metadata_identifiers\": [\n \"\",\n \"\"\n ],\n \"principals\": [\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n },\n {\n \"identifier\": \"\",\n \"type\": \"USER\"\n }\n ]\n}", "options": { "raw": { "headerFamily": "json", "language": "json" } } }, "url": { "raw": "{{baseUrl}}/api/rest/2.0/security/metadata/manage-object-privilege", "host": [ "{{baseUrl}}" ], "path": [ "api", "rest", "2.0", "security", "metadata", "manage-object-privilege" ] } }, "status": "Internal Server Error", "code": 500, "_postman_previewlanguage": "json", "header": [ { "key": "Content-Type", "value": "application/json" } ], "cookie": [], "responseTime": null, "body": "{\n \"error\": {}\n}", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-e18bd959-d884-4534-9230-867b6eb2018e" } ], "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-9fd47da7-c97f-4081-9dc0-e7a98409d4a2" } ], "id": "1b7946ea-6dd6-4bbf-a564-de1d812117a8", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-1b7946ea-6dd6-4bbf-a564-de1d812117a8" } ], "id": "ac9ee343-4ce3-44ba-b43d-644f7c3d2dcb", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-ac9ee343-4ce3-44ba-b43d-644f7c3d2dcb" } ], "id": "4808d09d-906c-48e1-bab5-07c93d104e56", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-4808d09d-906c-48e1-bab5-07c93d104e56" } ], "id": "860316cb-10bd-4bb7-b07c-889332d709e2", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-860316cb-10bd-4bb7-b07c-889332d709e2" } ], "id": "4cfc9e8d-8949-4206-a789-1fc4ef7df062", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-4cfc9e8d-8949-4206-a789-1fc4ef7df062" } ], "id": "f8929db1-f41a-48f3-a293-0606410423ff", "createdAt": "2026-07-28T03:13:52.000Z", "updatedAt": "2026-07-28T03:13:52.000Z", "uid": "35240-f8929db1-f41a-48f3-a293-0606410423ff" } ], "auth": { "type": "bearer", "bearer": [ { "key": "token", "value": "{{bearerToken}}", "type": "string" } ] }, "variable": [ { "key": "base-url", "value": "https://localhost:443" }, { "key": "baseUrl", "value": "{{base-url}}" } ] }