POST
/
genAI
/
v1
/
uploadURL
curl --request POST \
  --url https://api.aceaicompany.com/genAI/v1/uploadURL \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "username": "<string>",
  "filename": "<string>"
}'
{
  "signed_url": "https://storage.google.com/..."
}

Purpose: Provides a signed URL to securely upload data for Generative AI tasks.

Authorizations

Authorization
string
header
required

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

Body

application/json

Username and filename for the dataset to be uploaded for GenAI.

The body is of type object.

Response

200
application/json

Signed URL successfully generated.

The response is of type object.