Read the resource behind a placement
Returns the placement together with the external resource it points at, which is how a workspace item resolves back to its provider origin. Requires both the `resources:read` and `integrations:read` workspace permissions; an unknown placement is reported as not found.
Authorization
apiKey Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.
In: header
Path Parameters
Response Body
application/json
application/json
application/json
curl -X GET "https://example.com/v1/workspaces/string/integrations/placements/string"{ "data": { "resource": { "id": "string", "workspaceId": "string", "connectionId": "string", "provider": "string", "externalType": "string", "externalId": "string", "name": "string", "surfaceKind": "generic", "ownership": "external", "capabilities": [ "browse" ], "mimeType": "string", "canonicalUrl": "string", "parentExternalId": "string", "revision": "string", "providerCreatedAt": "string", "providerModifiedAt": "string", "metadata": {}, "syncStatus": "current", "lastSyncedAt": "string", "createdAt": "string", "updatedAt": "string" }, "placement": { "id": "string", "workspaceId": "string", "resourceId": "string", "workspaceItemId": "string", "mountId": "string", "kind": "link", "displayName": "string", "createdAt": "string", "updatedAt": "string" } }}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}{ "_tag": "ApiNotFound", "error": "not_found", "message": "That item does not exist, or this key cannot see it.", "status": 404}Read a provider resource by reference
Fetches the content of a provider resource identified by an external reference rather than a linked resource id, so a browsed item can be previewed before it is linked or imported. Requires both the `resources:read` and `integrations:read` workspace permissions, checked live before any cached copy is served, and is subject to the same short-lived content mirror as reading a linked resource.
Remove a linked or mounted resource placement
Detaches a placement from the workspace and returns the deleted id, leaving the resource untouched at the provider. Requires both the `resources:write` and `integrations:write` workspace permissions. Send an `Idempotency-Key` header to make retries safe; a replay within the window returns the original response.