POST
/
repos
curl --request POST \
  --url https://api.diversion.dev/v0/repos \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "repo_name": "repo-name",
  "description": "<string>",
  "branchless": true
}'
{
  "repo_name": "repo-name",
  "description": "<string>",
  "repo_id": "example_id",
  "default_branch_id": "<string>",
  "default_branch_name": "<string>",
  "size_bytes": 123,
  "owner_user_id": "<string>",
  "created_timestamp": 123,
  "sync_git_repo_url": "<string>"
}

Authorizations

Authorization
string
header
required

This API uses OAuth 2 with the implicit grant flow

Body

application/json
repo_name
string
required
Required string length: 1 - 128
description
string
branchless
boolean

Response

201
application/json
The newly created repo object
repo_name
string
required
Required string length: 1 - 128
repo_id
string
required
size_bytes
number
required
owner_user_id
string
required
created_timestamp
integer
required

Seconds since epoch UTC

description
string
default_branch_id
string
default_branch_name
string
sync_git_repo_url
string

Optional URL of the git repository being synced with the repo