User Preference Prompt

Retrieves the user prompt for the current resource owner.

get

Retrieves the user prompt for the current resource owner.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Responses
200

OK

get
/projects/user-prompt
GET /projects/user-prompt HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "prompt": "text",
  "dateModified": "2025-12-06T04:00:06.117Z"
}

Updates the user prompt for the current resource owner.

put

Updates the user prompt for the current resource owner.

Authorizations
AuthorizationstringRequired

Bearer authentication with JWT

Body
promptstring | nullableOptional
Responses
200

OK

put
/projects/user-prompt
PUT /projects/user-prompt HTTP/1.1
Host: api.example.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 17

{
  "prompt": "text"
}
{
  "prompt": "text",
  "dateModified": "2025-12-06T04:00:06.117Z"
}

Last updated