Skip to main content

Delete credentials

DELETE 

/credentials/:credentialsId

Deletes the credentials identified by the given credentialsId.

Request

Path Parameters

    credentialsId stringrequired

    Credentials string identifier

Query Parameters

    workspaceId int64

    Workspace numeric identifier

    checked boolean

    If set credentials deletion will be blocked by running jobs that depend on them

Responses

OK - No content

Authorization: http

name: BearerAuthtype: httpscheme: bearerbearerFormat: jwt
import http.client

conn = http.client.HTTPSConnection("docs.seqera.io")
payload = ''
headers = {
'Authorization': 'Bearer <token>'
}
conn.request("DELETE", "/credentials/:credentialsId", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
Request Collapse all
Auth
Parameters
— pathrequired
— query
— query