Deluge - Get last record created after created it from a custom Function
Hello people,
I did a custom function to create a new quote from a deal everything is good except at the end when I try to redirect my user to that quote he just create by clicking this button

that button is running a function that grab all the information on the deal and creating a quote with that info, I am using this to create the new quote
- info_str = "{\"data\":[" + paramap + "], " + "trigger: [\"approval\",\"workflow\",\"blueprint\"]}";
- //info info_str;
- response = invokeurl
- [
- url :posturl
- type :POST
- parameters:info_str
- headers:header_map
- ];
- info response;
- {
- "data": [
- {
- "code": "SUCCESS",
- "details": {
- "Modified_Time": "2022-09-19T15:21:23-07:00",
- "Modified_By": {
- "name": "Fernando Contreras",
- "id": "882677000100814001"
- },
- "Created_Time": "2022-09-19T15:21:23-07:00",
- "id": "882677000125535001",
- "Created_By": {
- "name": "Fernando Contreras",
- "id": "882677000100814001"
- }
- },
- "message": "record added",
- "status": "success"
- }
- ]
- }
Is there any way to get the Id of that quote the user just create?