Skip to main content

API name problem

  • October 9, 2024
  • 5 replies
  • 23 views

I am an implementer, and I am currently establishing connections with multiple companies. I have developed an application, and it works very well. However, I encountered a problem: the API names on the dashboard vary across different company environments. How can I standardize the API names on the dashboard?

5 replies

Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • 3512 replies
  • October 9, 2024

Hello there @aaronchen,

I replied to you in the request you opened 😀


  • Author
  • Participating Frequently
  • 16 replies
  • October 11, 2024

Thank you. That’s a good idea


Matias.Monday
Forum|alt.badge.img
  • monday.com Team Member
  • 3512 replies
  • October 13, 2024

I am glad I could help!


carlosdelgado
  • Participating Frequently
  • 5 replies
  • October 13, 2024

Can you share the solution?


  • Author
  • Participating Frequently
  • 16 replies
  • October 14, 2024

You can specify the ID of the column when you create it as explained here by passing the “id” parameter.

mutation {
create_column(
board_id: 7588079605
title: “My text column”
column_type: text
id: “text123”
) {
id
}
}