Get invocation
curl --request GET \
--url https://sync.trychroma.com/api/v1/invocations/{invocation_id} \
--header 'x-chroma-token: <api-key>'import requests
url = "https://sync.trychroma.com/api/v1/invocations/{invocation_id}"
headers = {"x-chroma-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-chroma-token': '<api-key>'}};
fetch('https://sync.trychroma.com/api/v1/invocations/{invocation_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));false{
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {
"github": {
"git_ref_identifier": {
"sha": "<string>"
}
},
"collection_name": "<string>",
"database_name": "<string>"
},
"status": "pending",
"source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Invocation
Get invocation
Returns details of an invocation with the provided ID.
GET
/
api
/
v1
/
invocations
/
{invocation_id}
Get invocation
curl --request GET \
--url https://sync.trychroma.com/api/v1/invocations/{invocation_id} \
--header 'x-chroma-token: <api-key>'import requests
url = "https://sync.trychroma.com/api/v1/invocations/{invocation_id}"
headers = {"x-chroma-token": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-chroma-token': '<api-key>'}};
fetch('https://sync.trychroma.com/api/v1/invocations/{invocation_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));false{
"created_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"metadata": {
"github": {
"git_ref_identifier": {
"sha": "<string>"
}
},
"collection_name": "<string>",
"database_name": "<string>"
},
"status": "pending",
"source_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}{
"error": "<string>",
"message": "<string>"
}Authorizations
Path Parameters
Invocation ID
Response
Found invocation with provided ID
Was this page helpful?