Skip to main content

Describe pipeline secret

GET 

/pipeline-secrets/:secretId

Retrieves the details of the pipeline secret identified by the given secretId.

Request

Path Parameters

    secretId int64required

    Secret numeric identifier

Query Parameters

    workspaceId int64

    Workspace numeric identifier

Responses

OK

Schema
    pipelineSecret object
    idint64nullable
    namestringrequired

    Possible values: <= 100 characters, Value must match regular expression ^[a-zA-Z_](?:[0-9A-Za-z]+|(_)(?!\1)){1,49}$

    lastUseddate-time
    dateCreateddate-time
    lastUpdateddate-time

Authorization: http

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

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