@fjrueda,
Assuming your use case is to schedule a job at a given day and hour, you will still need to create the trigger as it is what orchestrator will use to trigger the process.
So, what you need to do in your api call is update such trigger to be launched exactly when you need, to accomplish that you need to send a cron expression rather than the default values.
An example of a use case I have:
I created a regular trigger in orchestrator and left it disabled
Then my code calls the schedules api to enable it when I need it to run using a cron expression, essentially, I take an input parameter of when do I want to schedule the job (3 hours, 5 minutes, etc…) then do my endpoint calls
Define the schedule time/date

Build the payload
// I have this payload template, feel free to use it/modify it at your convenience
{
"Enabled": true,
"Name": "SCHEDULE_NAME",
"ReleaseId": RELEASEID,
"ReleaseKey": "RELEASE_KEY",
"ReleaseName": "RELEASE_NAME",
"PackageName": "PACKAGE_NAME",
"EnvironmentName": "ENVIRONMENT_NAME",
"StartStrategy": 1,
"ExecutorRobots": [],
"EnvironmentId": "ENVIRONMENT_ID",
"TimeZoneId": "Eastern Standard Time",
"StopProcessDate": "STOP_PROCESS_DATE",
"StartProcessCronSummary": "Every 30 minutes",
"StartProcessCron": "CRON_EXPRESSION",
"StartProcessCronDetails": "{\"type\":0,\"minutely\":{\"atMinute\":30},\"hourly\":{},\"daily\":{},\"weekly\":{\"weekdays\":[]},\"monthly\":{\"weekdays\":[]},\"advancedCronExpression\":\"\"}",
"Id": SCHEDULE_ID
}
Call the endpoints
//Get the schedule Id based on the schedule name
"/odata/ProcessSchedules?%24filter=Name%20eq%20'" + in_ScheduleName+"'"
//Enable the schedule
"/odata/ProcessSchedules(" + ScheduleDetails("ScheduleId") +")"
There are a few validation steps in between, but in rough theory that’s how you customize a schedule with API calls. Hope this helps
Forgot to mention, I’m no expert in cron expressions. I used an expression generator to build the format I needed
Here are a few
Cron expression generator by Cronhub
Cron Expression Generator | Programmer Online Tools (programmertools.online)