Hello,
I’m currently working on the frontend of a project and need data from a previous project implemented in Creatio. I reached out to the company for backend documentation, but they informed me that they don’t have any available.
I’ve been using Burp Suite and Postman to analyze the frontend routes. However, I discovered that the body of the POST requests includes GUIDs, which complicates the process, as I need to retrieve the encrypted ID first before fetching the data.
Do you have any suggestions to simplify this process?
Thank you!
Like
In that case, you can get the Id and values using the Odata GET Get object collection instances, more on it here. Also, use keyword select to return only the needed columns.
Hello,
Can you please clarify what exactly kind of data you need since it is not vary clear from your message?
Hey Dmytro Vovchenko,
Simply i have a post body that uses GUIDs to represent attributes instead of their actual values. I need to find the route that contains all the IDs and their corresponding values so I can update the post body flexibly.
Sorry, still don't understand what kind of IDs and values you meant. Is it IDs and values in one table, IDs of a table and table name, or IDs of columns in a table and their name?
Hey Dmytro Vovchenko,
IDs coming from db as json file
for example :
{
"rootSchemaName": "Case",
"Account": [
{
"id": "708c9a8b-feb6-4650-845a-4712b34debdf",
//"value": "..."
}
]
}
In this example he used this ID to identify a value instead of using it's value
I don't know the routes the previous developer used to get all account names and their IDs, so my request can be flexible for example i don't want to use this ID : 708c9a8b-feb6-4650-845a-4712b34debdf
In that case, you can get the Id and values using the Odata GET Get object collection instances, more on it here. Also, use keyword select to return only the needed columns.
Hi Dmytro Vovchenko,
Thanks for the help, sadly i already tried fetching
GET -> https://mycreatio.com/0/odata/Collection1
every time i get a 404 status code i believe the dev didn't implement this route !
Is there any other routes to get collection i'm not familiar with creatio i don't know how to get the routes that the previous developer used