https://developer.atlassian.com/cloud/trello/rest/#api-organizations-id-get
Surely there’s more data on an org than just an ID.
https://developer.atlassian.com/cloud/trello/rest/#api-organizations-id-get
Surely there’s more data on an org than just an ID.
What data gets returned when you make that call? This may be all that’s offered by Trello
There are a lot more properties returned. This is what I have in my library currently; it’s based on the data returned:
public string Id { get; set; }
public string Name { get; set; }
public string DisplayName { get; set; }
public string Desc { get; set; }
public string Url { get; set; }
public string Website { get; set; }
public string LogoHash { get; set; }
public List<int> PowerUps { get; set; }
public List<PowerUpData> PowerUpData { get; set; }
public OrganizationPreferences Prefs { get; set; }
public List<string> IdActions { get; set; }
public List<string> IdBoards { get; set; }
public List<string> IdMembers { get; set; }
The API docs need a lot of love right now, and we are working on adding incomplete information, one of the big ones being incomplete response schemas. Regardless, thanks for pointing this out.
I’ve seen the Trello docs through 4 different iterations (since before it was purchased by Atlassian), and they’ve never been anywhere near complete. Most of what I’ve done has been through trial-and-error experimentation and debugging the website. That said, its current state isn’t the best it’s been, either.
I’d +1 that am missing more docs, particularly struck me this about response schemas/examples … I think there were some, quite useful ones. Fingers crossed something happens!