POST
/
api
/
repos
/
{namespace}
/
{repo_name}
/
merge
/
{basehead}
curl --request POST \
  --url https://hub.oxen.ai/api/repos/{namespace}/{repo_name}/merge/{basehead} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: text/plain' \
  --data '{
    "user": {
        "author": "",
        "email": "",
    },
    "message": ""
}'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

namespace
string
required
Example:

"7857dd05-601f-44a3-8c12-68de9c92dae1"

repo_name
string
required
Example:

"e35fad8a-a942-4450-a363-30c19326a0fd"

basehead
string
required
Example:

"b2..b1"

Body

text/plain · file

The body is of type file.