Sync Ir
POST
/theses/{thesis_id}/ir-sync
const url = 'http://127.0.0.1:8000/theses/example/ir-sync';const options = {method: 'POST'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url http://127.0.0.1:8000/theses/example/ir-syncParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”thesis_id
required
Thesis Id
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response Sync Ir Theses Thesis Id Ir Sync Post
object
key
additional properties
any
Examplegenerated
{}Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "ctx": {}, "input": "example", "loc": [ "example" ], "msg": "example", "type": "example" } ]}