- Introduction
- Auth
- Bolts
- Environments
- Git
- Domains
- Logs
- List EnvironmentsGET
- Create EnvironmentPOST
- Get EnvironmentGET
- Update EnvironmentPATCH
- Delete EnvironmentDELETE
- Purge Environment CachePOST
- List Environment CronjobsGET
- Get Environment StatisticsGET
- Get Environment Available SettingsGET
- Get Environment PHP VersionsGET
- Get Environment UsageGET
- Get Environment SSH AccessesGET
- Create Environment SSH AccessPOST
- Remove Environment SSH AccessDELETE
- List Environment DatabasesGET
- Toggle Environment Dev ModePOST
- Environment Install WordpressPOST
- Environment Optimize WordpressPOST
- Locations
- Databases
- Cronjobs
- SSH Keys
- Certificates
- Billing
- Profile
Create Git Configuration
POST
https://api.servebolt.io/v1/environments/{id}/git
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
integer
required
Header Params
Accept
string
required
Example:
application/json
Content-Type
string
required
Example:
application/json
Body Params application/json
data
object
required
attributes
object
required
Example
{
"data": {
"attributes": {
"repodef": "git@github.com:octocat/Hello-World.git",
"branch": "master"
}
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.servebolt.io/v1/environments//git' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"attributes":{
"repodef": "git@github.com:octocat/Hello-World.git",
"branch": "master"
}
}
}'
Responses
🟢201Created
application/json
Body
data
object
required
id
integer
required
type
string
required
attributes
object
required
Example
{
"data": {
"id": 106,
"type": "git",
"attributes": {
"localpath": "public",
"git_root": "public.git",
"repodef": "git@git.gitlab.com:test/repo.git",
"branch": "main",
"autopull": false,
"pre_script": null,
"post_script": null,
"repomodified": true,
"enabled": true,
"commit": "5d3404a67692e76f3fa6563163789b84245f26fb",
"commit_name": "Merge branch 'app' ...",
"step": "deploy-complete",
"last_trigger": "2024-10-26T09:21:59.000000Z",
"last_status": true,
"last_message": "Deployed: Merge branch ...",
"publickey": "ssh-rsa AAAAB3N..."
}
}
}
Modified at 2024-10-30 14:15:19