Open Context Protocol is live! 🚀 Read the launch post
usersDeleteAttestationsById

usersDeleteAttestationsById

Delete attestations by ID

Details

  • Method: DELETE
  • Path: /users/{username}/attestations/{attestation_id}
  • Operation ID: users/delete-attestations-by-id

Parameters

{
  "username": {
    "description": "The handle for the GitHub user account.",
    "required": true,
    "location": "path",
    "type": "string"
  },
  "attestation_id": {
    "description": "Attestation ID",
    "required": true,
    "location": "path",
    "type": "integer"
  }
}

Usage

from ocp_agent import OCPAgent

agent = OCPAgent()
await agent.register_api('github')

# Call this tool
result = await agent.call_tool('usersDeleteAttestationsById', {
    # Add required parameters here
})