PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
PINECONE_ROLE_BINDING_ID="YOUR_ROLE_BINDING_ID"
curl -X DELETE "https://api.pinecone.io/admin/role-bindings/$PINECONE_ROLE_BINDING_ID" \
-H "X-Pinecone-Api-Version: 2026-04" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN"
Role bindings
Delete a role binding
Delete a role binding. Permissions are revoked when the deletion completes.
Returns 202. The binding is removed immediately, so it no longer appears in list or get requests and instead returns 404. A repeat delete request for the same binding returns 404.
Returns 409 when deleting:
-
The last
OrgOwnerbinding for a user in the organization. -
The last organization-membership role binding for a user who still has
other role bindings.
-
The last organization-membership role binding for a pending invite
(delete the invite instead).
DELETE
/
admin
/
role-bindings
/
{role_binding_id}
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
PINECONE_ROLE_BINDING_ID="YOUR_ROLE_BINDING_ID"
curl -X DELETE "https://api.pinecone.io/admin/role-bindings/$PINECONE_ROLE_BINDING_ID" \
-H "X-Pinecone-Api-Version: 2026-04" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN"
PINECONE_ACCESS_TOKEN="YOUR_ACCESS_TOKEN"
PINECONE_ROLE_BINDING_ID="YOUR_ROLE_BINDING_ID"
curl -X DELETE "https://api.pinecone.io/admin/role-bindings/$PINECONE_ROLE_BINDING_ID" \
-H "X-Pinecone-Api-Version: 2026-04" \
-H "Authorization: Bearer $PINECONE_ACCESS_TOKEN"
Authorizations
An access token must be provided in the Authorization header using the Bearer scheme.
Headers
Required date-based version header
Path Parameters
Role binding ID
Response
Role binding deletion accepted.
Was this page helpful?
⌘I