Epam Integrations
Create a Badge on EPAM Heroes Portal
POST
https://api.epam.com/epam_heroes/badges
Parameters
Parameter | Type | Note | |
---|---|---|---|
to | required | string | Badge recipient's app user ID |
from | string | Badge giver's app user ID | |
type | required | string | Type/name of the badge |
comment | required | string | Message attached to the badge |
emails | array | CC emails which will be notified about the badge given |
Example
1client = CirroIOV2::Client.new(...)
2client.EpamHeroesBadges.create(
3 "to": "1",
4 "from": "3",
5 "type": "custom_badge_ework_1",
6 "comment": "Thank you for your hard work!",
7 "emails": [
8 "[email protected]"
9 ]
10)