[SalesForce] How to create/modify Custom Labels programatically?

Is there any possibility to create/modify programmatically custom labels using APEX or any other programming language?

As far as I observe there is a possibility to access them via

Label.your_label_name

But not able to create any or update it.

Best Answer

Custom Labels are part of Metadata API. You can create it and modify by means of tools, that work with metadata. For example, using ant migration tool.

In apex you can do it with Andrew Fawcett's Apex Metadata API

Related Topic