i want to create a card using api key on trello with a specific time (say 5 pm) at the due date. how can i do that
If you want to do it raw (any programming language):
Using the create card endpoint: https://developer.atlassian.com/cloud/trello/rest/api-group-cards/#api-cards-post you set the due field (and the mandatory listId and Name)... The due date need to be in format yyyy-MM-ddTHH:mm (UTC).
If you use C# you can use this API wrapper to have an easier time: https://www.nuget.org/packages/TrelloDotNet
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.