Skip to main content
All CollectionsTines FAQBuilding Stories
How can I reference a credential I create in a previous action?
How can I reference a credential I create in a previous action?

Using created credentials in Tines

Fergal Collins avatar
Written by Fergal Collins
Updated over a year ago

To reference a credential you create in a previous action, use the GET() function to get the credential. For example:

GET(CREDENTIAL, previous_action.body.name)

If the name isn't already in snake case you might need to wrap the path of the name in TO_SNAKE_CASE():

GET(CREDENTIAL, TO_SNAKE_CASE(previous_action.body.name))
Did this answer your question?