Skip to content

Commit

Permalink
Update program.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
kev-le committed Jan 30, 2024
1 parent 1cca711 commit 7b9bdee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion StudioClient.Example/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ static async Task Main(string[] args)
dynamic res = await apiClient.UploadJobPhoto(filePath, job.id.Value);

// QUEUE JOB
dynamic queuedJob = await apiClient.QueueJob(job.id.Value, new { callback_url = "http://127.0.0.1:3030" });
dynamic queuedJob = await apiClient.QueueJob(job.id.Value, new { callback_url = "YOUR_CALLBACK_ENDPOINT" });

// FETCH COMPLETED JOB (wait until job status is completed)
dynamic completedJob = await apiClient.GetJob(queuedJob.id.Value);
Expand Down

0 comments on commit 7b9bdee

Please sign in to comment.