The Zuplo Developer API, powered by Zuplo
Welcome to ZAPI - the Zuplo API where you can manage API keys, tunnels and more. To get your API key for this service login to portal.zuplo.com and navigate to your project Settings > Zuplo API Keys.
https://developer-api-main-8600723.self.zuplo.com
Creates a variable
Creates a new environment variable in a branch for a given project.
path Parameters
accountName
stringrequiredThe name of the account. You can find this in your Zuplo Portal under Settings > Project Information.
projectName
stringrequiredThe name of the project. You can find this in your Zuplo Portal under Settings > Project Information.
branchName
stringrequiredThe name of the branch in your source control provider.
Headers
Authorization
stringrequiredThe
Authorization
header is used to authenticate with the API using your API key. Value is of the formatBearer YOUR_KEY_HERE
.
Request Body
name
stringThe name of the variable. Must be named in SCREAMING_SNAKE_CASE.
isSecret
booleanWhether the variable is a secret.
value
stringThe value of the variable.
Responses
branch
stringcreatedOn
stringWhen the item was created.
updatedOn
stringWhen the item was last updated.
name
stringThe name of the variable. Must be named in SCREAMING_SNAKE_CASE.
isSecret
booleanWhether the variable is a secret.
value
stringThe value of the variable.
Updates a variable
Update the value of a variable in a branch for a given project.
path Parameters
accountName
stringrequiredThe name of the account. You can find this in your Zuplo Portal under Settings > Project Information.
projectName
stringrequiredThe name of the project. You can find this in your Zuplo Portal under Settings > Project Information.
branchName
stringrequiredThe name of the branch in your source control provider.
variableName
stringrequiredThe name of the environment variable.
Headers
Authorization
stringrequiredThe
Authorization
header is used to authenticate with the API using your API key. Value is of the formatBearer YOUR_KEY_HERE
.
Request Body
value
stringoptionalThe value of the variable.
Responses
branch
stringcreatedOn
stringWhen the item was created.
updatedOn
stringWhen the item was last updated.
name
stringThe name of the variable. Must be named in SCREAMING_SNAKE_CASE.
isSecret
booleanWhether the variable is a secret.
value
stringThe value of the variable.