Skip to content

Instantly share code, notes, and snippets.

@clarkritchie
Last active March 20, 2022 14:58
Show Gist options
  • Save clarkritchie/1118f9c562734bc2718636b4c1369c4f to your computer and use it in GitHub Desktop.
Save clarkritchie/1118f9c562734bc2718636b4c1369c4f to your computer and use it in GitHub Desktop.

1 of 4, Get jobs

  • GET /jobTemplates/<monitor_id>/jobs
{
    "meta": {
        "model": "job",
        "action": "find",
        "populate": false,
        "url": "https://newman-api.postman.co/jobTemplates/1eaa4e9f-47a9-4170-a5e2-39c5f520366f/jobs",
        "nextUrl": "https://newman-api.postman.co/jobTemplates/1eaa4e9f-47a9-4170-a5e2-39c5f520366f/jobs?page=2"
    },
    "data": [
        {
            "id": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
            "name": "sbc-service-action-service-legacy-staging",
            "startedAt": "2021-09-08T13:02:15.167Z",
            "finishedAt": "2021-09-08T13:02:23.970Z",
            "jobTemplate": "1eaa4e9f-47a9-4170-a5e2-39c5f520366f",
            "collection": "10289180-470d66f9-9452-43c3-bdf5-7da175e8be8c",
            "environment": "10289180-24d2a82b-3cff-4bfe-a46d-37516f982005",
            "options": {
                "strictSSL": true,
                "followRedirects": true,
                "requestTimeout": null,
                "requestDelay": 0
            },
            "status": {
                "state": "finished:success",
                "healthy": true,
                "aborted": false
            },
            "results": {
                "runCount": 1,
                "abortedCount": 0,
                "errorCount": 0,
                "warningCount": 0,
                "passedTestCount": 33,
                "failedTestCount": 0,
                "consecutiveCount": 27,
                "requestCount": 15,
                "responseLatency": 5197,
                "responseSize": 221774
            },
            "createdBy": 10289180,
            "createdAt": "2021-09-08T13:01:23.725Z",
            "trigger": "schedule",
            "url": "https://newman-api.getpostman.com/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62",
            "jobTemplateUrl": "https://newman-api.getpostman.com/jobTemplates/1eaa4e9f-47a9-4170-a5e2-39c5f520366f",
            "collectionUrl": "https://newman-api.getpostman.com/collections/10289180-470d66f9-9452-43c3-bdf5-7da175e8be8c",
            "environmentUrl": "https://newman-api.getpostman.com/environments/10289180-24d2a82b-3cff-4bfe-a46d-37516f982005",
            "runsUrl": "https://newman-api.getpostman.com/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62/runs",
            "logUrl": "https://newman-api.getpostman.com/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62/log"
        }
        ...[more data here]...
    ]
}

2 of 4, Get job runs

  • GET /jobs/<job_id>/runs
{
    "meta": {
        "model": "run",
        "action": "find",
        "populate": false,
        "url": "https://newman-api.postman.co/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62/runs"
    },
    "data": [
        {
            "id": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
            "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
            "region": "us-east",
            "startedAt": "2021-09-08T13:02:15.167Z",
            "finishedAt": "2021-09-08T13:02:23.878Z",
            "status": {
                "state": "finished:success",
                "healthy": true,
                "aborted": false
            },
            "results": {
                "errorCount": 0,
                "warningCount": 0,
                "passedTestCount": 33,
                "failedTestCount": 0,
                "requestCount": 15,
                "responseLatency": 5197,
                "responseSize": 221774
            },
            "states": [
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "waiting",
                    "transitionedAt": "2021-09-08T13:01:23.800Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "starting",
                    "transitionedAt": "2021-09-08T13:02:15.182Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "running",
                    "transitionedAt": "2021-09-08T13:02:15.363Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "finishing",
                    "transitionedAt": "2021-09-08T13:02:23.853Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "finished:success",
                    "transitionedAt": "2021-09-08T13:02:23.906Z"
                }
            ],
            "url": "https://newman-api.getpostman.com/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
            "jobUrl": "https://newman-api.getpostman.com/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62",
            "logUrl": "https://newman-api.getpostman.com/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748/log"
        }
    ]
}

3 of 4, Get job run details

  • GET /runs/<run_id>
{
    "meta": {
        "model": "run",
        "action": "findOne",
        "populate": false,
        "url": "https://newman-api.postman.co/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748"
    },
    "data": {
        "id": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
        "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
        "region": "us-east",
        "startedAt": "2021-09-08T13:02:15.167Z",
        "finishedAt": "2021-09-08T13:02:23.878Z",
        "status": {
            "state": "finished:success",
            "healthy": true,
            "aborted": false
        },
        "results": {
            "errorCount": 0,
            "warningCount": 0,
            "passedTestCount": 33,
            "failedTestCount": 0,
            "requestCount": 15,
            "responseLatency": 5197,
            "responseSize": 221774
        },
        "states": [
            {
                "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                "state": "waiting",
                "transitionedAt": "2021-09-08T13:01:23.800Z"
            },
            {
                "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                "state": "starting",
                "transitionedAt": "2021-09-08T13:02:15.182Z"
            },
            {
                "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                "state": "running",
                "transitionedAt": "2021-09-08T13:02:15.363Z"
            },
            {
                "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                "state": "finishing",
                "transitionedAt": "2021-09-08T13:02:23.853Z"
            },
            {
                "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                "state": "finished:success",
                "transitionedAt": "2021-09-08T13:02:23.906Z"
            }
        ],
        "url": "https://newman-api.getpostman.com/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
        "jobUrl": "https://newman-api.getpostman.com/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62",
        "logUrl": "https://newman-api.getpostman.com/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748/log"
    }
}

4 of 4, Get job run logs

  • GET /runs/<run_id>/log
{
    "meta": {
        "model": "run",
        "action": "find",
        "populate": [
            "log",
            "log.args",
            "log.args.assertion",
            "log.args.assertion.error",
            "log.args.cursor",
            "log.args.error",
            "log.args.event",
            "log.args.event.script",
            "log.args.events",
            "log.args.events.script",
            "log.args.item",
            "log.args.item.request",
            "log.args.request",
            "log.args.request.events",
            "log.args.response",
            "log.args.script",
            "log.args.scriptResult",
            "log.args.scriptResult.error",
            "log.args.scriptResult.event",
            "log.args.scriptResult.script",
            "log.args.scriptResults",
            "log.args.scriptResults.error",
            "log.args.scriptResults.event",
            "log.args.scriptResults.script"
        ],
        "url": "https://newman-api.postman.co/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748/log"
    },
    "data": [
        {
            "id": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
            "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
            "region": "us-east",
            "startedAt": "2021-09-08T13:02:15.167Z",
            "finishedAt": "2021-09-08T13:02:23.878Z",
            "status": {
                "state": "finished:success",
                "healthy": true,
                "aborted": false
            },
            "results": {
                "errorCount": 0,
                "warningCount": 0,
                "passedTestCount": 33,
                "failedTestCount": 0,
                "requestCount": 15,
                "responseLatency": 5197,
                "responseSize": 221774
            },
            "states": [
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "waiting",
                    "transitionedAt": "2021-09-08T13:01:23.800Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "starting",
                    "transitionedAt": "2021-09-08T13:02:15.182Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "running",
                    "transitionedAt": "2021-09-08T13:02:15.363Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "finishing",
                    "transitionedAt": "2021-09-08T13:02:23.853Z"
                },
                {
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "state": "finished:success",
                    "transitionedAt": "2021-09-08T13:02:23.906Z"
                }
            ],
            "url": "https://newman-api.getpostman.com/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
            "jobUrl": "https://newman-api.getpostman.com/jobs/1ec10a4d-e96d-42b0-b318-b2a549bebb62",
            "logUrl": "https://newman-api.getpostman.com/runs/1ec10a4d-e9e9-4ae0-a610-52f3a8377748/log",
            "log": [
                {
                    "id": 1,
                    "event": "created",
                    "timestamp": "2021-09-08T13:01:23.731Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trigger": "schedule",
                        "by": "o00540fff31d6aabe86959_a7",
                        "jobTemplate": "1eaa4e9f-47a9-4170-a5e2-39c5f520366f"
                    }
                },
                {
                    "id": 2,
                    "event": "assigned",
                    "timestamp": "2021-09-08T13:02:15.095Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "to": "a0a683ed8d5bcdb0e984_cff1",
                        "by": "o0fd1612b0236b3a5618944_b"
                    }
                },
                {
                    "id": 3,
                    "event": "loadingData",
                    "timestamp": "2021-09-08T13:02:15.219Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "by": "o00540fff31d6aabe86959_a7",
                        "collection": "10289180-470d66f9-9452-43c3-bdf5-7da175e8be8c",
                        "environment": "10289180-24d2a82b-3cff-4bfe-a46d-37516f982005",
                        "jobTemplate": "1eaa4e9f-47a9-4170-a5e2-39c5f520366f"
                    }
                },
                {
                    "id": 4,
                    "event": "loadedData",
                    "timestamp": "2021-09-08T13:02:15.343Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "by": "o00540fff31d6aabe86959_a7",
                        "collection": "10289180-470d66f9-9452-43c3-bdf5-7da175e8be8c",
                        "environment": "10289180-24d2a82b-3cff-4bfe-a46d-37516f982005",
                        "jobTemplate": "1eaa4e9f-47a9-4170-a5e2-39c5f520366f"
                    }
                },
                {
                    "id": 5,
                    "event": "start",
                    "timestamp": "2021-09-08T13:02:15.686Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b",
                            "id": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b"
                        }
                    }
                },
                {
                    "id": 6,
                    "event": "beforeIteration",
                    "timestamp": "2021-09-08T13:02:15.686Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b",
                            "id": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b"
                        }
                    }
                },
                {
                    "id": 7,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:15.688Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        }
                    }
                },
                {
                    "id": 8,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:15.690Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "events": [
                            "3fe1b396-850a-4137-8280-dbe05e0e02d8"
                        ]
                    }
                },
                {
                    "id": 9,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:15.690Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "1eeace0c-545e-44f5-8547-d05599feed39",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "5aee74bc-ff27-41c6-88bd-2a0ede2b776a"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "1eeace0c-545e-44f5-8547-d05599feed39",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 10,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:15.712Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "1eeace0c-545e-44f5-8547-d05599feed39",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "5aee74bc-ff27-41c6-88bd-2a0ede2b776a"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        }
                    }
                },
                {
                    "id": 11,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:15.723Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "scriptResults": [
                            "a29110d5-3bd5-4ab2-b33d-92d3127d4bdc"
                        ]
                    }
                },
                {
                    "id": 12,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:15.746Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://api-sp-staging.todaysplan.com.au/rest/auth/login?response=me",
                            "headers": {
                                "Api-Key": null,
                                "Api-Key-Secret": null
                            },
                            "body": {
                                "contentLength": 79,
                                "mode": "raw"
                            },
                            "id": "9d7869e2-387f-4590-b576-20a69e1038d6",
                            "events": []
                        }
                    }
                },
                {
                    "id": 13,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:16.780Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://api-sp-staging.todaysplan.com.au/rest/auth/login?response=me",
                            "headers": {
                                "Api-Key": null,
                                "Api-Key-Secret": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "api-sp-staging.todaysplan.com.au",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "79"
                            },
                            "body": {
                                "contentLength": 79,
                                "mode": "raw"
                            },
                            "id": "4cc22552-12e1-4860-8bd1-ee54b1323a84",
                            "events": []
                        },
                        "response": {
                            "id": "93b512a4-54eb-40d7-b527-cea156a57dc6",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Content-Type": "application/json",
                                "Content-Length": "3007",
                                "Connection": "keep-alive",
                                "Date": "Wed, 08 Sep 2021 13:02:16 GMT",
                                "x-amzn-RequestId": null,
                                "Content-Encoding": "gzip",
                                "Access-Control-Allow-Headers": "Content-Type, Authorization, tp-nodecorate, X-UserId, Api-Key, Api-Key-Secret, *",
                                "x-amzn-Remapped-Connection": null,
                                "Via": null,
                                "Set-Cookie": null,
                                "x-amz-apigw-id": null,
                                "Access-Control-Allow-Methods": "GET, POST, PUT, OPTIONS, DELETE",
                                "X-Amz-Cf-Pop": null,
                                "x-amzn-Remapped-Date": null,
                                "Access-Control-Allow-Credentials": "true",
                                "X-Cache": null,
                                "X-Amz-Cf-Id": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 14,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:16.782Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "position": 0,
                                "iteration": 0,
                                "length": 15,
                                "cycles": 1,
                                "empty": false,
                                "eof": false,
                                "bof": true,
                                "cr": false,
                                "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                                "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e"
                            }
                        },
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        }
                    }
                },
                {
                    "id": 15,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:16.783Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://api-sp-staging.todaysplan.com.au/rest/auth/login?response=me",
                            "headers": {
                                "Api-Key": null,
                                "Api-Key-Secret": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "api-sp-staging.todaysplan.com.au",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "79"
                            },
                            "body": {
                                "contentLength": 79,
                                "mode": "raw"
                            },
                            "id": "4cc22552-12e1-4860-8bd1-ee54b1323a84",
                            "events": []
                        },
                        "response": {
                            "id": "9ce4e0ab-0b27-4878-a6bd-c6dd186dafc6",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 1032,
                            "responseSize": 3848,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Content-Type": "application/json",
                                "Content-Length": "3007",
                                "Connection": "keep-alive",
                                "Date": "Wed, 08 Sep 2021 13:02:16 GMT",
                                "x-amzn-RequestId": null,
                                "Content-Encoding": "gzip",
                                "Access-Control-Allow-Headers": "Content-Type, Authorization, tp-nodecorate, X-UserId, Api-Key, Api-Key-Secret, *",
                                "x-amzn-Remapped-Connection": null,
                                "Via": null,
                                "Set-Cookie": null,
                                "x-amz-apigw-id": null,
                                "Access-Control-Allow-Methods": "GET, POST, PUT, OPTIONS, DELETE",
                                "X-Amz-Cf-Pop": null,
                                "x-amzn-Remapped-Date": null,
                                "Access-Control-Allow-Credentials": "true",
                                "X-Cache": null,
                                "X-Amz-Cf-Id": null
                            },
                            "body": {
                                "contentLength": 3848
                            }
                        }
                    }
                },
                {
                    "id": 16,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:16.783Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://api-sp-staging.todaysplan.com.au/rest/auth/login?response=me",
                            "headers": {
                                "Api-Key": null,
                                "Api-Key-Secret": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "api-sp-staging.todaysplan.com.au",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "79"
                            },
                            "body": {
                                "contentLength": 79,
                                "mode": "raw"
                            },
                            "id": "4cc22552-12e1-4860-8bd1-ee54b1323a84",
                            "events": []
                        },
                        "response": {
                            "id": "9ce4e0ab-0b27-4878-a6bd-c6dd186dafc6",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 1032,
                            "responseSize": 3848,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Content-Type": "application/json",
                                "Content-Length": "3007",
                                "Connection": "keep-alive",
                                "Date": "Wed, 08 Sep 2021 13:02:16 GMT",
                                "x-amzn-RequestId": null,
                                "Content-Encoding": "gzip",
                                "Access-Control-Allow-Headers": "Content-Type, Authorization, tp-nodecorate, X-UserId, Api-Key, Api-Key-Secret, *",
                                "x-amzn-Remapped-Connection": null,
                                "Via": null,
                                "Set-Cookie": null,
                                "x-amz-apigw-id": null,
                                "Access-Control-Allow-Methods": "GET, POST, PUT, OPTIONS, DELETE",
                                "X-Amz-Cf-Pop": null,
                                "x-amzn-Remapped-Date": null,
                                "Access-Control-Allow-Credentials": "true",
                                "X-Cache": null,
                                "X-Amz-Cf-Id": null
                            },
                            "body": {
                                "contentLength": 3848
                            }
                        }
                    }
                },
                {
                    "id": 17,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:16.785Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "events": [
                            "e0841552-b822-4a2b-91c1-407d6b4b264f",
                            "8ce7b1a6-f65e-4331-b046-99c3e3e1e905"
                        ]
                    }
                },
                {
                    "id": 18,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:16.786Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-5"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "916f1fe8-10e6-4230-812f-2de002afa073",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "93cd5869-4d37-42be-bc31-1dd6cebcea5e"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "916f1fe8-10e6-4230-812f-2de002afa073",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 19,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:16.816Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-5"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "916f1fe8-10e6-4230-812f-2de002afa073",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "93cd5869-4d37-42be-bc31-1dd6cebcea5e"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        }
                    }
                },
                {
                    "id": 20,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:16.817Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "44e5d828-2914-4430-8a0f-263ed8bfe9f1",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-6"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "44e5d828-2914-4430-8a0f-263ed8bfe9f1-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "e994bf95-a592-45c4-a611-ae506f7a97f9",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "574234c2-c518-408e-b60c-433684ca9929"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "script": {
                            "id": "44e5d828-2914-4430-8a0f-263ed8bfe9f1-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "e994bf95-a592-45c4-a611-ae506f7a97f9",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 21,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:16.839Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "44e5d828-2914-4430-8a0f-263ed8bfe9f1",
                            "execution": "e994bf95-a592-45c4-a611-ae506f7a97f9",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-7"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 22,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:16.839Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "44e5d828-2914-4430-8a0f-263ed8bfe9f1",
                            "execution": "e994bf95-a592-45c4-a611-ae506f7a97f9",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-7"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "10e7dfca-c0a2-4221-91f5-9894e88b9751"
                            }
                        ]
                    }
                },
                {
                    "id": 23,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:16.841Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "44e5d828-2914-4430-8a0f-263ed8bfe9f1",
                            "execution": "e994bf95-a592-45c4-a611-ae506f7a97f9",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-7"
                        },
                        "assertion": [
                            {
                                "name": "Body matches string access_token",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 2,
                                "id": "5764d619-65ac-4145-866f-9f63c5387c79"
                            }
                        ]
                    }
                },
                {
                    "id": 24,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:16.846Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "scriptId": "44e5d828-2914-4430-8a0f-263ed8bfe9f1",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-6"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "44e5d828-2914-4430-8a0f-263ed8bfe9f1-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "e994bf95-a592-45c4-a611-ae506f7a97f9",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "574234c2-c518-408e-b60c-433684ca9929"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        }
                    }
                },
                {
                    "id": 25,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:16.846Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        },
                        "scriptResults": [
                            "aa59db11-40aa-4605-9b0a-171071413a28",
                            "e8c155cc-f5af-410d-a844-d9cdfbb7710e"
                        ]
                    }
                },
                {
                    "id": 26,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:16.846Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 0,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": true,
                            "cr": false,
                            "ref": "6704713f-1fb4-4ace-b93e-4cb782abb017",
                            "httpRequestId": "92f989aa-868f-441e-ac7d-79683fa8a17e",
                            "id": "6704713f-1fb4-4ace-b93e-4cb782abb017-4"
                        },
                        "item": {
                            "id": "cfba7b31-a74b-4ad2-9223-935ef08e54e7",
                            "name": "get-token",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url_zone5}}/rest/auth/login?response=me",
                                "headers": {
                                    "Api-Key": null,
                                    "Api-Key-Secret": null
                                },
                                "body": {
                                    "contentLength": 84,
                                    "mode": "raw"
                                },
                                "id": "b67d1ac3-606c-4948-94f9-2d3f1e9c7285"
                            }
                        }
                    }
                },
                {
                    "id": 27,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:16.853Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 28,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:16.854Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "events": [
                            "5aee74bc-ff27-41c6-88bd-2a0ede2b776a",
                            "209fb1ca-7ed2-4cf1-b0e8-41694a583bee"
                        ]
                    }
                },
                {
                    "id": 29,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:16.855Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "5579de75-7a5b-41ab-8ac7-0ad871fb521f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "a66090b3-56d5-4aab-bdc3-4e3d9689453a"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-3",
                            "type": "text/javascript",
                            "_lastExecutionId": "5579de75-7a5b-41ab-8ac7-0ad871fb521f",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 30,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:16.874Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "5579de75-7a5b-41ab-8ac7-0ad871fb521f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "a66090b3-56d5-4aab-bdc3-4e3d9689453a"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 31,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:16.879Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "6f0332e9-d87c-4c8c-b33a-b181b232c565",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "112a4c75-267b-4b2f-a958-988804f9143b"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "6f0332e9-d87c-4c8c-b33a-b181b232c565",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 32,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:16.894Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "6f0332e9-d87c-4c8c-b33a-b181b232c565",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "112a4c75-267b-4b2f-a958-988804f9143b"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 33,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:16.898Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "scriptResults": [
                            "6481d8e1-1309-4266-89ce-0b515e83e67d",
                            "71cce04b-18eb-40f3-9d72-c40f8f398ade"
                        ]
                    }
                },
                {
                    "id": 34,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:16.904Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 327,
                                "mode": "raw"
                            },
                            "id": "a30a0779-cd6e-4117-a931-20faaf06c5dd",
                            "events": []
                        }
                    }
                },
                {
                    "id": 35,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:17.253Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "327"
                            },
                            "body": {
                                "contentLength": 327,
                                "mode": "raw"
                            },
                            "id": "202ce949-94cd-4f42-a4bb-68abff18cc97",
                            "events": []
                        },
                        "response": {
                            "id": "b0c4c2c1-c9e7-4c23-992e-882fd71753fe",
                            "status": "Created",
                            "code": 201,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:17 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "836",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 36,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:17.255Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                                "length": 15,
                                "cycles": 1,
                                "position": 1,
                                "iteration": 0,
                                "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9"
                            }
                        },
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        }
                    }
                },
                {
                    "id": 37,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:17.255Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "327"
                            },
                            "body": {
                                "contentLength": 327,
                                "mode": "raw"
                            },
                            "id": "202ce949-94cd-4f42-a4bb-68abff18cc97",
                            "events": []
                        },
                        "response": {
                            "id": "fda0a3e9-a8db-4969-96c8-51a8888113de",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 346,
                            "responseSize": 836,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:17 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "836",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 836
                            }
                        }
                    }
                },
                {
                    "id": 38,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:17.255Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "327"
                            },
                            "body": {
                                "contentLength": 327,
                                "mode": "raw"
                            },
                            "id": "202ce949-94cd-4f42-a4bb-68abff18cc97",
                            "events": []
                        },
                        "response": {
                            "id": "fda0a3e9-a8db-4969-96c8-51a8888113de",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 346,
                            "responseSize": 836,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:17 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "836",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 836
                            }
                        }
                    }
                },
                {
                    "id": 39,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:17.257Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "events": [
                            "93cd5869-4d37-42be-bc31-1dd6cebcea5e",
                            "98873076-35e4-4b8a-97a8-3a7d21fb4ec5",
                            "9ff3f438-faef-4771-9d6c-0c12ea034fbd"
                        ]
                    }
                },
                {
                    "id": 40,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:17.258Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "0c886596-b874-4b17-a354-e0eab8d422bf",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "8fb48726-1260-49e1-be4b-f1f710d9ab60"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-3",
                            "type": "text/javascript",
                            "_lastExecutionId": "0c886596-b874-4b17-a354-e0eab8d422bf",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 41,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:17.303Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "0c886596-b874-4b17-a354-e0eab8d422bf",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "8fb48726-1260-49e1-be4b-f1f710d9ab60"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 42,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:17.307Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "dd01dbe5-a6b9-496e-bb3f-1108630b4353",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "f585e9f6-787c-49c3-b7fe-473b2bee099f"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "dd01dbe5-a6b9-496e-bb3f-1108630b4353",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 43,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:17.335Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "dd01dbe5-a6b9-496e-bb3f-1108630b4353",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "f585e9f6-787c-49c3-b7fe-473b2bee099f"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 44,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:17.340Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "1a2c2f64-6e91-4c02-bfc9-8ac841529658",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "1a2c2f64-6e91-4c02-bfc9-8ac841529658-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "bff5d9e4-3ea9-4723-9fd4-65d62d4d9f8a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b27934b8-8c8c-4370-9804-6941247e476c"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "script": {
                            "id": "1a2c2f64-6e91-4c02-bfc9-8ac841529658-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "bff5d9e4-3ea9-4723-9fd4-65d62d4d9f8a",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 45,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:17.377Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "1a2c2f64-6e91-4c02-bfc9-8ac841529658",
                            "execution": "bff5d9e4-3ea9-4723-9fd4-65d62d4d9f8a",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 201",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "938a1a62-ec16-407e-a2fd-f8473506475f"
                            }
                        ]
                    }
                },
                {
                    "id": 46,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:17.378Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "1a2c2f64-6e91-4c02-bfc9-8ac841529658",
                            "execution": "bff5d9e4-3ea9-4723-9fd4-65d62d4d9f8a",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 47,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:17.385Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "scriptId": "1a2c2f64-6e91-4c02-bfc9-8ac841529658",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "1a2c2f64-6e91-4c02-bfc9-8ac841529658-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "bff5d9e4-3ea9-4723-9fd4-65d62d4d9f8a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b27934b8-8c8c-4370-9804-6941247e476c"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 48,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:17.391Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        },
                        "scriptResults": [
                            "62206924-bae8-44fc-b72c-2b3e97f8a41d",
                            "d59eb2fa-e590-4088-be4b-138d9a315e5c",
                            "7d93474d-aec6-4848-b0e2-4a075924abc3"
                        ]
                    }
                },
                {
                    "id": 49,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:17.392Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "f14212e5-6bc3-445a-969b-f7ea92dd7974",
                            "length": 15,
                            "cycles": 1,
                            "position": 1,
                            "iteration": 0,
                            "httpRequestId": "6c908e62-bbfa-485f-8e7d-1a67f9b7f4e9",
                            "id": "f14212e5-6bc3-445a-969b-f7ea92dd7974-6"
                        },
                        "item": {
                            "id": "0b93fb2e-d18e-4f47-9495-fa05f298b515",
                            "name": "service_activities_post",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 327,
                                    "mode": "raw"
                                },
                                "id": "625d1e76-f409-4c39-afe2-99feaae77fed"
                            }
                        }
                    }
                },
                {
                    "id": 50,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:17.395Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 51,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:17.397Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "events": [
                            "a66090b3-56d5-4aab-bdc3-4e3d9689453a",
                            "112a4c75-267b-4b2f-a958-988804f9143b"
                        ]
                    }
                },
                {
                    "id": 52,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:17.397Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "37da052f-ad1e-45af-85e9-b4c1ede39404",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "09768003-1afc-46e5-b857-28afbc32d26f"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-4",
                            "type": "text/javascript",
                            "_lastExecutionId": "37da052f-ad1e-45af-85e9-b4c1ede39404",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 53,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:17.414Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "37da052f-ad1e-45af-85e9-b4c1ede39404",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "09768003-1afc-46e5-b857-28afbc32d26f"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 54,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:17.419Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "a55e6681-0446-4190-90b9-3805806945ce",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "7742c70b-6b77-4f29-80cb-1f280f6dc8cf"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-3",
                            "type": "text/javascript",
                            "_lastExecutionId": "a55e6681-0446-4190-90b9-3805806945ce",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 55,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:17.436Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "a55e6681-0446-4190-90b9-3805806945ce",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "7742c70b-6b77-4f29-80cb-1f280f6dc8cf"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 56,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:17.440Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "scriptResults": [
                            "ddd57680-ce25-4cf1-9904-81c6efc078c0",
                            "543ad96b-2ecd-40fb-930f-36c3cce315f5"
                        ]
                    }
                },
                {
                    "id": 57,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:17.446Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068/phases",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 745,
                                "mode": "raw"
                            },
                            "id": "52329608-2815-4338-8318-46a1144c2dd4",
                            "events": []
                        }
                    }
                },
                {
                    "id": 58,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:18.005Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068/phases",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "745"
                            },
                            "body": {
                                "contentLength": 745,
                                "mode": "raw"
                            },
                            "id": "8d6d5b4e-feee-41fa-9124-644b650aad5d",
                            "events": []
                        },
                        "response": {
                            "id": "f44c545b-03a1-40b8-a17e-79472f9e8d6f",
                            "status": "Created",
                            "code": 201,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:17 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "747",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 59,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:18.006Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                                "length": 15,
                                "cycles": 1,
                                "position": 2,
                                "iteration": 0,
                                "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89"
                            }
                        },
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        }
                    }
                },
                {
                    "id": 60,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:18.006Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068/phases",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "745"
                            },
                            "body": {
                                "contentLength": 745,
                                "mode": "raw"
                            },
                            "id": "8d6d5b4e-feee-41fa-9124-644b650aad5d",
                            "events": []
                        },
                        "response": {
                            "id": "a5574402-45af-44fc-bb16-b32de6c9ed33",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 557,
                            "responseSize": 747,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:17 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "747",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 747
                            }
                        }
                    }
                },
                {
                    "id": 61,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:18.007Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068/phases",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "745"
                            },
                            "body": {
                                "contentLength": 745,
                                "mode": "raw"
                            },
                            "id": "8d6d5b4e-feee-41fa-9124-644b650aad5d",
                            "events": []
                        },
                        "response": {
                            "id": "a5574402-45af-44fc-bb16-b32de6c9ed33",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 557,
                            "responseSize": 747,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:17 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "747",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 747
                            }
                        }
                    }
                },
                {
                    "id": 62,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:18.074Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "events": [
                            "8fb48726-1260-49e1-be4b-f1f710d9ab60",
                            "f585e9f6-787c-49c3-b7fe-473b2bee099f",
                            "5695b0aa-0b83-4e85-b5c8-26255e6e7fc2"
                        ]
                    }
                },
                {
                    "id": 63,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.074Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "567a8870-8c7f-405a-8274-a5e28a666349",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "a73cbe40-fdb5-4fd1-826b-548a5aecb94d"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-4",
                            "type": "text/javascript",
                            "_lastExecutionId": "567a8870-8c7f-405a-8274-a5e28a666349",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 64,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.123Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "567a8870-8c7f-405a-8274-a5e28a666349",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "a73cbe40-fdb5-4fd1-826b-548a5aecb94d"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 65,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.131Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "5b3d0e22-e4f1-4354-8ae9-3701a74dce3d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "4bb6a054-dc0d-406d-a91a-68905fe67364"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-3",
                            "type": "text/javascript",
                            "_lastExecutionId": "5b3d0e22-e4f1-4354-8ae9-3701a74dce3d",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 66,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.224Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "5b3d0e22-e4f1-4354-8ae9-3701a74dce3d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "4bb6a054-dc0d-406d-a91a-68905fe67364"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 67,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.229Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "448636fe-4fdd-4669-bbb2-4478f8d5b80f",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "448636fe-4fdd-4669-bbb2-4478f8d5b80f-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "bbbfe57d-4ec1-42fa-bcef-ff06c49c01ae",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "8a924ac0-5ace-4e88-bf3a-1cb2bb4b3fcd"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "script": {
                            "id": "448636fe-4fdd-4669-bbb2-4478f8d5b80f-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "bbbfe57d-4ec1-42fa-bcef-ff06c49c01ae",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 68,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:18.265Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "448636fe-4fdd-4669-bbb2-4478f8d5b80f",
                            "execution": "bbbfe57d-4ec1-42fa-bcef-ff06c49c01ae",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 201",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "938a1a62-ec16-407e-a2fd-f8473506475f"
                            }
                        ]
                    }
                },
                {
                    "id": 69,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:18.265Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "448636fe-4fdd-4669-bbb2-4478f8d5b80f",
                            "execution": "bbbfe57d-4ec1-42fa-bcef-ff06c49c01ae",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 70,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.271Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "scriptId": "448636fe-4fdd-4669-bbb2-4478f8d5b80f",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "448636fe-4fdd-4669-bbb2-4478f8d5b80f-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "bbbfe57d-4ec1-42fa-bcef-ff06c49c01ae",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "8a924ac0-5ace-4e88-bf3a-1cb2bb4b3fcd"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 71,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:18.274Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        },
                        "scriptResults": [
                            "1969d707-a696-461a-93de-dff78c6ca7cc",
                            "96ace43a-d186-4847-a245-e2c09d001f37",
                            "d3c39871-59cf-46d1-8c48-69ec99d62308"
                        ]
                    }
                },
                {
                    "id": 72,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:18.275Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1",
                            "length": 15,
                            "cycles": 1,
                            "position": 2,
                            "iteration": 0,
                            "httpRequestId": "ca6ec040-dbe1-4932-922a-4fdba1909c89",
                            "id": "4af5b0c7-8b32-48ee-a23f-b538b08d33e1-6"
                        },
                        "item": {
                            "id": "de773800-bec8-49b2-b1dd-2d5fc03c2526",
                            "name": "service_activities/{serviceactivitiesId}/phases",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}/phases",
                                "headers": {},
                                "body": {
                                    "contentLength": 745,
                                    "mode": "raw"
                                },
                                "id": "2cede76a-db22-4bb3-b635-5f3810de3663"
                            }
                        }
                    }
                },
                {
                    "id": 73,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:18.278Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 74,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:18.279Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "events": [
                            "09768003-1afc-46e5-b857-28afbc32d26f",
                            "7742c70b-6b77-4f29-80cb-1f280f6dc8cf"
                        ]
                    }
                },
                {
                    "id": 75,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.279Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "928f5d19-3cef-4f52-bbbc-7764a9621fb9",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b81e1d25-ac1b-4595-8ed3-887b80cb415c"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-5",
                            "type": "text/javascript",
                            "_lastExecutionId": "928f5d19-3cef-4f52-bbbc-7764a9621fb9",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 76,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.293Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "928f5d19-3cef-4f52-bbbc-7764a9621fb9",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b81e1d25-ac1b-4595-8ed3-887b80cb415c"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 77,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.294Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "88df84ab-948e-4e8b-8b7f-6831de356f1d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "0faa9d10-7c31-4a55-a80f-8ec9d665d489"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-4",
                            "type": "text/javascript",
                            "_lastExecutionId": "88df84ab-948e-4e8b-8b7f-6831de356f1d",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 78,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.307Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "88df84ab-948e-4e8b-8b7f-6831de356f1d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "0faa9d10-7c31-4a55-a80f-8ec9d665d489"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 79,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:18.311Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "scriptResults": [
                            "9fc63a58-8a1d-406a-b831-83896cdc1d1d",
                            "46741c38-2531-42a0-ae1b-c9a64be602b8"
                        ]
                    }
                },
                {
                    "id": 80,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:18.320Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/phases/12597",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 751,
                                "mode": "raw"
                            },
                            "id": "5f99694e-4f4c-48b2-b5f0-9654df7da511",
                            "events": []
                        }
                    }
                },
                {
                    "id": 81,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:18.587Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/phases/12597",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "751"
                            },
                            "body": {
                                "contentLength": 751,
                                "mode": "raw"
                            },
                            "id": "50c78328-6a52-4d8a-87f6-9c593111869b",
                            "events": []
                        },
                        "response": {
                            "id": "667c2bc0-e93a-4cbe-b230-5cf01ebe0645",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:18 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 82,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:18.590Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                                "length": 15,
                                "cycles": 1,
                                "position": 3,
                                "iteration": 0,
                                "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae"
                            }
                        },
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        }
                    }
                },
                {
                    "id": 83,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:18.590Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/phases/12597",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "751"
                            },
                            "body": {
                                "contentLength": 751,
                                "mode": "raw"
                            },
                            "id": "50c78328-6a52-4d8a-87f6-9c593111869b",
                            "events": []
                        },
                        "response": {
                            "id": "99049996-f835-41da-b36b-ee9f1b601fe0",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 266,
                            "responseSize": 753,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:18 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 753
                            }
                        }
                    }
                },
                {
                    "id": 84,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:18.591Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/phases/12597",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "751"
                            },
                            "body": {
                                "contentLength": 751,
                                "mode": "raw"
                            },
                            "id": "50c78328-6a52-4d8a-87f6-9c593111869b",
                            "events": []
                        },
                        "response": {
                            "id": "99049996-f835-41da-b36b-ee9f1b601fe0",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 266,
                            "responseSize": 753,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:18 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 753
                            }
                        }
                    }
                },
                {
                    "id": 85,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:18.607Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "events": [
                            "a73cbe40-fdb5-4fd1-826b-548a5aecb94d",
                            "4bb6a054-dc0d-406d-a91a-68905fe67364",
                            "c0385426-3078-4abf-a496-29523307e816"
                        ]
                    }
                },
                {
                    "id": 86,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.608Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "c0468d59-2e33-4023-a78e-7490bd26afdb",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d8d35536-6cac-492d-842b-ab4de3a126b7"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-5",
                            "type": "text/javascript",
                            "_lastExecutionId": "c0468d59-2e33-4023-a78e-7490bd26afdb",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 87,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.721Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "c0468d59-2e33-4023-a78e-7490bd26afdb",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d8d35536-6cac-492d-842b-ab4de3a126b7"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 88,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.731Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "4d33f713-c0a9-420d-be5e-445adb02ffe7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "bfc8ef14-84a8-47f7-991f-8c7d7c8cfbb8"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-4",
                            "type": "text/javascript",
                            "_lastExecutionId": "4d33f713-c0a9-420d-be5e-445adb02ffe7",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 89,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.813Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "4d33f713-c0a9-420d-be5e-445adb02ffe7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "bfc8ef14-84a8-47f7-991f-8c7d7c8cfbb8"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 90,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.816Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "bbbed499-7235-45f2-93c9-5e82ee8f2a36",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2e1a914d-3d92-4ab7-aee2-284aa0417f75"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "script": {
                            "id": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "bbbed499-7235-45f2-93c9-5e82ee8f2a36",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 91,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:18.913Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528",
                            "execution": "bbbed499-7235-45f2-93c9-5e82ee8f2a36",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 92,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:18.913Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528",
                            "execution": "bbbed499-7235-45f2-93c9-5e82ee8f2a36",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 93,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.927Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "scriptId": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "dadbbab4-d007-4ce5-aafc-4bdf24e6f528-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "bbbed499-7235-45f2-93c9-5e82ee8f2a36",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2e1a914d-3d92-4ab7-aee2-284aa0417f75"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 94,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:18.931Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        },
                        "scriptResults": [
                            "38235975-792d-42d6-b2d6-75d8f1828dcc",
                            "50ebc408-6aac-49d4-b881-c1ab314d53f3",
                            "e426c01b-a5fb-43a5-9592-d81f50205f88"
                        ]
                    }
                },
                {
                    "id": 95,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:18.932Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6",
                            "length": 15,
                            "cycles": 1,
                            "position": 3,
                            "iteration": 0,
                            "httpRequestId": "dd080eb9-2044-4ee9-8c02-cca002783bae",
                            "id": "82039b3c-1de7-4f42-9ae9-0b9c237b1ed6-6"
                        },
                        "item": {
                            "id": "4514e544-1457-45be-a8fd-720945d41888",
                            "name": "service_activities/phases/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities/phases/{{id_sa_phase}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 751,
                                    "mode": "raw"
                                },
                                "id": "1d89e111-10d7-4ac9-9fb1-a46c7ce02c1b"
                            }
                        }
                    }
                },
                {
                    "id": 96,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:18.946Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 97,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:18.948Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "events": [
                            "b81e1d25-ac1b-4595-8ed3-887b80cb415c",
                            "0faa9d10-7c31-4a55-a80f-8ec9d665d489"
                        ]
                    }
                },
                {
                    "id": 98,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.948Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "0159a6ec-609c-4339-adf0-d28f8a4b13f0",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "33525ea0-c7e8-407d-9ba1-2771c39ce06f"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-6",
                            "type": "text/javascript",
                            "_lastExecutionId": "0159a6ec-609c-4339-adf0-d28f8a4b13f0",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 99,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:18.976Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "0159a6ec-609c-4339-adf0-d28f8a4b13f0",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "33525ea0-c7e8-407d-9ba1-2771c39ce06f"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 100,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:18.986Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "1a39e578-55e2-4418-916b-aac1850ed104",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "932067c0-43f9-49e4-a631-a4508ea786d1"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-5",
                            "type": "text/javascript",
                            "_lastExecutionId": "1a39e578-55e2-4418-916b-aac1850ed104",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 101,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:19.014Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "1a39e578-55e2-4418-916b-aac1850ed104",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "932067c0-43f9-49e4-a631-a4508ea786d1"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 102,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:19.017Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "scriptResults": [
                            "b10c16d6-1483-4cf5-b069-b2199e1db3f0",
                            "030a0e1a-5bcc-4968-9c64-fd1397c1f9af"
                        ]
                    }
                },
                {
                    "id": 103,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:19.022Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 26,
                                "mode": "raw"
                            },
                            "id": "abfe0f89-e8a1-4bf3-9b02-30b2a7f85e39",
                            "events": []
                        }
                    }
                },
                {
                    "id": 104,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:19.557Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "26"
                            },
                            "body": {
                                "contentLength": 26,
                                "mode": "raw"
                            },
                            "id": "cb6b2a09-f366-4fd9-98e0-c9a5451e31c2",
                            "events": []
                        },
                        "response": {
                            "id": "f7464fdd-5097-4ac4-9725-8ae17a20f4bb",
                            "status": "No Content",
                            "code": 204,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:19 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 105,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:19.570Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                                "length": 15,
                                "cycles": 1,
                                "position": 4,
                                "iteration": 0,
                                "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0"
                            }
                        },
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        }
                    }
                },
                {
                    "id": 106,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:19.571Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "26"
                            },
                            "body": {
                                "contentLength": 26,
                                "mode": "raw"
                            },
                            "id": "cb6b2a09-f366-4fd9-98e0-c9a5451e31c2",
                            "events": []
                        },
                        "response": {
                            "id": "7de5ef8c-20aa-4ce7-86b5-75b2828d25c5",
                            "status": "No Content",
                            "code": 204,
                            "responseTime": 532,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:19 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 107,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:19.571Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "26"
                            },
                            "body": {
                                "contentLength": 26,
                                "mode": "raw"
                            },
                            "id": "cb6b2a09-f366-4fd9-98e0-c9a5451e31c2",
                            "events": []
                        },
                        "response": {
                            "id": "7de5ef8c-20aa-4ce7-86b5-75b2828d25c5",
                            "status": "No Content",
                            "code": 204,
                            "responseTime": 532,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:19 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 108,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:19.574Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "events": [
                            "d8d35536-6cac-492d-842b-ab4de3a126b7",
                            "bfc8ef14-84a8-47f7-991f-8c7d7c8cfbb8",
                            "9d4a2035-e4b6-495d-982d-4fe661c2e8d6"
                        ]
                    }
                },
                {
                    "id": 109,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:19.574Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "e397d63e-7412-42a8-b734-a5d3386ac96f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "de739260-64e5-4a61-bdf3-c181d3d2b014"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-6",
                            "type": "text/javascript",
                            "_lastExecutionId": "e397d63e-7412-42a8-b734-a5d3386ac96f",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 110,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:19.641Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "e397d63e-7412-42a8-b734-a5d3386ac96f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "de739260-64e5-4a61-bdf3-c181d3d2b014"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 111,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:19.671Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "c0527b9c-388b-45ea-b4bc-f32861e0f63d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c6d2151b-956b-4297-a463-f08164467ac5"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-5",
                            "type": "text/javascript",
                            "_lastExecutionId": "c0527b9c-388b-45ea-b4bc-f32861e0f63d",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 112,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:19.733Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "c0527b9c-388b-45ea-b4bc-f32861e0f63d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c6d2151b-956b-4297-a463-f08164467ac5"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 113,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:19.736Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "441fd119-18dd-4343-84d1-f83b142454db",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "441fd119-18dd-4343-84d1-f83b142454db-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "cde406a7-9bee-42ac-8f49-94ffd5a6ab4b",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d5befbb7-3013-4c29-9029-b63fe9cf7ba7"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "script": {
                            "id": "441fd119-18dd-4343-84d1-f83b142454db-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "cde406a7-9bee-42ac-8f49-94ffd5a6ab4b",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 114,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:19.750Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "441fd119-18dd-4343-84d1-f83b142454db",
                            "execution": "cde406a7-9bee-42ac-8f49-94ffd5a6ab4b",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 204",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "a9f71af7-ca78-4a93-abb2-d287b0d2bb96"
                            }
                        ]
                    }
                },
                {
                    "id": 115,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:19.751Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "441fd119-18dd-4343-84d1-f83b142454db",
                            "execution": "cde406a7-9bee-42ac-8f49-94ffd5a6ab4b",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 116,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:19.760Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "scriptId": "441fd119-18dd-4343-84d1-f83b142454db",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "441fd119-18dd-4343-84d1-f83b142454db-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "cde406a7-9bee-42ac-8f49-94ffd5a6ab4b",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d5befbb7-3013-4c29-9029-b63fe9cf7ba7"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 117,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:19.764Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        },
                        "scriptResults": [
                            "72b97e77-8f91-45c6-b322-89ef0aae7f16",
                            "c3af6eba-e621-4812-a19f-935c29cee912",
                            "8ff07f86-620f-4d24-a933-71010c8e1a8c"
                        ]
                    }
                },
                {
                    "id": 118,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:19.765Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0e130f20-beb2-4fcd-b167-15227ae320d1",
                            "length": 15,
                            "cycles": 1,
                            "position": 4,
                            "iteration": 0,
                            "httpRequestId": "04f12d9a-4760-4346-b6a2-9486d3cf5ca0",
                            "id": "0e130f20-beb2-4fcd-b167-15227ae320d1-6"
                        },
                        "item": {
                            "id": "83663a0c-434c-42a0-89fd-796892a27e82",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 26,
                                    "mode": "raw"
                                },
                                "id": "471b2720-8e04-4a76-ad06-183483dbd0a3"
                            }
                        }
                    }
                },
                {
                    "id": 119,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:19.773Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 120,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:19.774Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "events": [
                            "33525ea0-c7e8-407d-9ba1-2771c39ce06f",
                            "932067c0-43f9-49e4-a631-a4508ea786d1"
                        ]
                    }
                },
                {
                    "id": 121,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:19.774Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "325f072f-0b9e-4846-87d9-f4c5449bfde4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "21acf8fc-2ef7-4250-921d-65bd0cf64d54"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-7",
                            "type": "text/javascript",
                            "_lastExecutionId": "325f072f-0b9e-4846-87d9-f4c5449bfde4",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 122,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:19.787Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "325f072f-0b9e-4846-87d9-f4c5449bfde4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "21acf8fc-2ef7-4250-921d-65bd0cf64d54"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 123,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:19.787Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "0a169f30-9b12-436d-a4ac-e9035877321d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6f017033-b7a1-4c99-b73a-6802ac1a0263"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-6",
                            "type": "text/javascript",
                            "_lastExecutionId": "0a169f30-9b12-436d-a4ac-e9035877321d",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 124,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:19.798Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "0a169f30-9b12-436d-a4ac-e9035877321d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6f017033-b7a1-4c99-b73a-6802ac1a0263"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 125,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:19.800Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "scriptResults": [
                            "40348f34-1da5-4362-a44f-42545c8e9cd7",
                            "7084a2fa-3d82-4972-9e74-d4fef2aec01e"
                        ]
                    }
                },
                {
                    "id": 126,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:19.804Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "50903cf4-ac23-4063-8d75-32b96a0ada2c",
                            "events": []
                        }
                    }
                },
                {
                    "id": 127,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:20.032Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "0e8d6207-c556-436e-aac8-c4bf999dd9c8",
                            "events": []
                        },
                        "response": {
                            "id": "0a781c52-82fb-4b44-b343-3c44da336dab",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 128,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:20.035Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                                "length": 15,
                                "cycles": 1,
                                "position": 5,
                                "iteration": 0,
                                "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376"
                            }
                        },
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        }
                    }
                },
                {
                    "id": 129,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:20.035Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "0e8d6207-c556-436e-aac8-c4bf999dd9c8",
                            "events": []
                        },
                        "response": {
                            "id": "41170a61-ac95-4931-b7f9-1c1c249ffd9c",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 225,
                            "responseSize": 1585,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1585
                            }
                        }
                    }
                },
                {
                    "id": 130,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:20.035Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "0e8d6207-c556-436e-aac8-c4bf999dd9c8",
                            "events": []
                        },
                        "response": {
                            "id": "41170a61-ac95-4931-b7f9-1c1c249ffd9c",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 225,
                            "responseSize": 1585,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1585
                            }
                        }
                    }
                },
                {
                    "id": 131,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:20.037Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "events": [
                            "de739260-64e5-4a61-bdf3-c181d3d2b014",
                            "c6d2151b-956b-4297-a463-f08164467ac5",
                            "3c37e96f-4cbb-471d-9cc6-7759fc59c352"
                        ]
                    }
                },
                {
                    "id": 132,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.037Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "928fe92c-31df-4e5f-8526-b30ceacc2a2c",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d8a3c160-2df9-4b6c-8508-a8a574fd9569"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-7",
                            "type": "text/javascript",
                            "_lastExecutionId": "928fe92c-31df-4e5f-8526-b30ceacc2a2c",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 133,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.054Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "928fe92c-31df-4e5f-8526-b30ceacc2a2c",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d8a3c160-2df9-4b6c-8508-a8a574fd9569"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 134,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.058Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "7ebc2acc-f119-4133-9289-56ec87b1859e",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "77da3728-30cf-4127-94ff-e4b1937496df"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-6",
                            "type": "text/javascript",
                            "_lastExecutionId": "7ebc2acc-f119-4133-9289-56ec87b1859e",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 135,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.076Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "7ebc2acc-f119-4133-9289-56ec87b1859e",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "77da3728-30cf-4127-94ff-e4b1937496df"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 136,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.081Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "e381db0b-d51d-4527-b984-7368958f3b02",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "e381db0b-d51d-4527-b984-7368958f3b02-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "838df7df-c84f-4a8f-957b-4421bdfce9d7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2f87fd23-da37-43cd-9b0f-02ac6e88e40a"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "script": {
                            "id": "e381db0b-d51d-4527-b984-7368958f3b02-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "838df7df-c84f-4a8f-957b-4421bdfce9d7",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 137,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:20.099Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "e381db0b-d51d-4527-b984-7368958f3b02",
                            "execution": "838df7df-c84f-4a8f-957b-4421bdfce9d7",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 138,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:20.099Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "e381db0b-d51d-4527-b984-7368958f3b02",
                            "execution": "838df7df-c84f-4a8f-957b-4421bdfce9d7",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 139,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:20.108Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "e381db0b-d51d-4527-b984-7368958f3b02",
                            "execution": "838df7df-c84f-4a8f-957b-4421bdfce9d7",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-10"
                        },
                        "assertion": [
                            {
                                "name": "Body contains fixed string and is not null : status , requirement , bikeSN",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 2,
                                "id": "30f63999-87a5-45d0-9f79-d577429d3eb8"
                            }
                        ]
                    }
                },
                {
                    "id": 140,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.115Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "scriptId": "e381db0b-d51d-4527-b984-7368958f3b02",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "e381db0b-d51d-4527-b984-7368958f3b02-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "838df7df-c84f-4a8f-957b-4421bdfce9d7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2f87fd23-da37-43cd-9b0f-02ac6e88e40a"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 141,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:20.129Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        },
                        "scriptResults": [
                            "8015df37-0071-4cc1-af29-e3fc189cd116",
                            "f6852e98-049b-4570-ade1-86f1a0ecd2c1",
                            "045eec92-6c53-4fb5-be4d-a995e65f3fba"
                        ]
                    }
                },
                {
                    "id": 142,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:20.131Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "4e279c35-1539-495c-8b9e-a6cbceaf0922",
                            "length": 15,
                            "cycles": 1,
                            "position": 5,
                            "iteration": 0,
                            "httpRequestId": "12247fc5-2c4a-4ab7-bdd4-f0413c1fb376",
                            "id": "4e279c35-1539-495c-8b9e-a6cbceaf0922-6"
                        },
                        "item": {
                            "id": "d2e60b01-bca7-4a45-b828-e692e018586a",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "da6538cc-1cf2-44b8-ad70-09a82f511119"
                            }
                        }
                    }
                },
                {
                    "id": 143,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:20.135Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 144,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:20.137Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "events": [
                            "21acf8fc-2ef7-4250-921d-65bd0cf64d54",
                            "6f017033-b7a1-4c99-b73a-6802ac1a0263"
                        ]
                    }
                },
                {
                    "id": 145,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.137Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "0268fbb2-ef63-4734-8d7a-dda7a0792e04",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c517e46f-7858-4118-a99b-f455fc99475a"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-8",
                            "type": "text/javascript",
                            "_lastExecutionId": "0268fbb2-ef63-4734-8d7a-dda7a0792e04",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 146,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.178Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "0268fbb2-ef63-4734-8d7a-dda7a0792e04",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c517e46f-7858-4118-a99b-f455fc99475a"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 147,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.182Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "b492b051-1b31-4e13-83d3-895492f9dfbe",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d4b1caf9-2453-46e2-9f6a-8245f932561f"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-7",
                            "type": "text/javascript",
                            "_lastExecutionId": "b492b051-1b31-4e13-83d3-895492f9dfbe",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 148,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.221Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "b492b051-1b31-4e13-83d3-895492f9dfbe",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d4b1caf9-2453-46e2-9f6a-8245f932561f"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 149,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:20.230Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "scriptResults": [
                            "a74a2545-f256-415e-80a6-99620d8f259e",
                            "0b8c0b3e-6bd1-4b2a-8d31-ac0c10331492"
                        ]
                    }
                },
                {
                    "id": 150,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:20.236Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "02638362-a340-4368-9b00-134cde2e2dc7",
                            "events": []
                        }
                    }
                },
                {
                    "id": 151,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:20.474Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "a52ee62c-8020-4964-9197-04e2127bf64c",
                            "events": []
                        },
                        "response": {
                            "id": "8fc2520d-50fd-4adb-a8a3-6254a70f59ae",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 152,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:20.477Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                                "length": 15,
                                "cycles": 1,
                                "position": 6,
                                "iteration": 0,
                                "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c"
                            }
                        },
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        }
                    }
                },
                {
                    "id": 153,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:20.477Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "a52ee62c-8020-4964-9197-04e2127bf64c",
                            "events": []
                        },
                        "response": {
                            "id": "c50a6a95-fd6d-4cca-af34-1e3491f57a60",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 231,
                            "responseSize": 15790,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 15790
                            }
                        }
                    }
                },
                {
                    "id": 154,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:20.478Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "a52ee62c-8020-4964-9197-04e2127bf64c",
                            "events": []
                        },
                        "response": {
                            "id": "c50a6a95-fd6d-4cca-af34-1e3491f57a60",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 231,
                            "responseSize": 15790,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 15790
                            }
                        }
                    }
                },
                {
                    "id": 155,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:20.480Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "events": [
                            "d8a3c160-2df9-4b6c-8508-a8a574fd9569",
                            "77da3728-30cf-4127-94ff-e4b1937496df",
                            "c882a1e0-7faa-439f-85dc-410b1e4f5d52"
                        ]
                    }
                },
                {
                    "id": 156,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.480Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "fe13554d-d819-45d2-9c86-11839e111bc7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b74cc182-7639-471b-a3a1-73363cb90e36"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-8",
                            "type": "text/javascript",
                            "_lastExecutionId": "fe13554d-d819-45d2-9c86-11839e111bc7",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 157,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.518Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "fe13554d-d819-45d2-9c86-11839e111bc7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b74cc182-7639-471b-a3a1-73363cb90e36"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 158,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.523Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "83a44737-4db6-45cb-a349-65bc6db94970",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "07cd903a-24d5-4416-adaf-00a8e7038a47"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-7",
                            "type": "text/javascript",
                            "_lastExecutionId": "83a44737-4db6-45cb-a349-65bc6db94970",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 159,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.543Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "83a44737-4db6-45cb-a349-65bc6db94970",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "07cd903a-24d5-4416-adaf-00a8e7038a47"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 160,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.548Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "7464ed88-b62f-42cf-ad28-d78eac9ccfae",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "7464ed88-b62f-42cf-ad28-d78eac9ccfae-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "f61e3524-2df5-4711-a32b-139da82a2650",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2917eee6-90c3-4ddb-82d9-05da5a99854d"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "script": {
                            "id": "7464ed88-b62f-42cf-ad28-d78eac9ccfae-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "f61e3524-2df5-4711-a32b-139da82a2650",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 161,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:20.588Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "7464ed88-b62f-42cf-ad28-d78eac9ccfae",
                            "execution": "f61e3524-2df5-4711-a32b-139da82a2650",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 162,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:20.589Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "7464ed88-b62f-42cf-ad28-d78eac9ccfae",
                            "execution": "f61e3524-2df5-4711-a32b-139da82a2650",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 163,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:20.603Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "7464ed88-b62f-42cf-ad28-d78eac9ccfae",
                            "execution": "f61e3524-2df5-4711-a32b-139da82a2650",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-10"
                        },
                        "assertion": [
                            {
                                "name": "Body contains fixed string and is not null : status , requirement , bikeSN",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 2,
                                "id": "30f63999-87a5-45d0-9f79-d577429d3eb8"
                            }
                        ]
                    }
                },
                {
                    "id": 164,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.608Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "scriptId": "7464ed88-b62f-42cf-ad28-d78eac9ccfae",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "7464ed88-b62f-42cf-ad28-d78eac9ccfae-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "f61e3524-2df5-4711-a32b-139da82a2650",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2917eee6-90c3-4ddb-82d9-05da5a99854d"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 165,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:20.616Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        },
                        "scriptResults": [
                            "a61bc965-735f-4462-96d3-217c96cbe175",
                            "e44b05cc-0167-40a9-99d1-df4caa0ee440",
                            "78f9857f-e45b-46cc-a385-3eb9e2d95071"
                        ]
                    }
                },
                {
                    "id": 166,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:20.619Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "73d421b5-3fdd-4cb9-a08c-8361a8a11554",
                            "length": 15,
                            "cycles": 1,
                            "position": 6,
                            "iteration": 0,
                            "httpRequestId": "076917c4-901a-4193-94b8-20c58863610c",
                            "id": "73d421b5-3fdd-4cb9-a08c-8361a8a11554-6"
                        },
                        "item": {
                            "id": "1e754a93-738f-469c-8d55-9c8a6a57ff11",
                            "name": "service_activities",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "963150e6-3291-484a-a63a-26f15822e398"
                            }
                        }
                    }
                },
                {
                    "id": 167,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:20.624Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 168,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:20.625Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "events": [
                            "c517e46f-7858-4118-a99b-f455fc99475a",
                            "d4b1caf9-2453-46e2-9f6a-8245f932561f"
                        ]
                    }
                },
                {
                    "id": 169,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.626Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-9",
                                "type": "text/javascript",
                                "_lastExecutionId": "a89284a2-48dd-4b5c-8788-b2f084c2d30d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "1b82b7ba-8b5e-4c53-938c-fce9973e31c5"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-9",
                            "type": "text/javascript",
                            "_lastExecutionId": "a89284a2-48dd-4b5c-8788-b2f084c2d30d",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 170,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.647Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-9",
                                "type": "text/javascript",
                                "_lastExecutionId": "a89284a2-48dd-4b5c-8788-b2f084c2d30d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "1b82b7ba-8b5e-4c53-938c-fce9973e31c5"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 171,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.649Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "7ff9e42b-665f-4262-a736-078ac001b408",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "26879cf7-cfe1-4865-afe6-fc99a6725bfd"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "script": {
                            "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-8",
                            "type": "text/javascript",
                            "_lastExecutionId": "7ff9e42b-665f-4262-a736-078ac001b408",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 172,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.671Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "scriptId": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "e707a595-567e-4bf5-b9ea-9e37e3cb26c6-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "7ff9e42b-665f-4262-a736-078ac001b408",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "26879cf7-cfe1-4865-afe6-fc99a6725bfd"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 173,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:20.672Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "scriptResults": [
                            "498e8bf6-6066-4f24-8bdd-8e1924bbed2d",
                            "f84025b2-5ed7-4550-95cc-1b0cebc3ffb9"
                        ]
                    }
                },
                {
                    "id": 174,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:20.680Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "75dfb330-f193-46fc-8abe-bd3b519b2763",
                            "events": []
                        }
                    }
                },
                {
                    "id": 175,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:20.936Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "9a0dd598-8a7e-429d-bc35-fe4eaabb56e4",
                            "events": []
                        },
                        "response": {
                            "id": "4dc32c70-f46c-426d-a2ce-e436e4b07e8c",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 176,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:20.938Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                                "length": 15,
                                "cycles": 1,
                                "position": 7,
                                "iteration": 0,
                                "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b"
                            }
                        },
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        }
                    }
                },
                {
                    "id": 177,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:20.938Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "9a0dd598-8a7e-429d-bc35-fe4eaabb56e4",
                            "events": []
                        },
                        "response": {
                            "id": "1a9b35ad-77ab-4835-b50d-ef0fdab50fd9",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 253,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 178,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:20.938Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities/12068",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "9a0dd598-8a7e-429d-bc35-fe4eaabb56e4",
                            "events": []
                        },
                        "response": {
                            "id": "1a9b35ad-77ab-4835-b50d-ef0fdab50fd9",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 253,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:20 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 179,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:20.950Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "events": [
                            "b74cc182-7639-471b-a3a1-73363cb90e36",
                            "07cd903a-24d5-4416-adaf-00a8e7038a47",
                            "6e73d63b-f590-4ef2-96e9-35e4a73d5243"
                        ]
                    }
                },
                {
                    "id": 180,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.951Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-9",
                                "type": "text/javascript",
                                "_lastExecutionId": "1f5f8057-2a9c-45b3-98ee-1ca73fe4eb65",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6c2cfa48-84c3-4fb3-aebc-3b3c9cd143a3"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-9",
                            "type": "text/javascript",
                            "_lastExecutionId": "1f5f8057-2a9c-45b3-98ee-1ca73fe4eb65",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 181,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:20.968Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-9",
                                "type": "text/javascript",
                                "_lastExecutionId": "1f5f8057-2a9c-45b3-98ee-1ca73fe4eb65",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6c2cfa48-84c3-4fb3-aebc-3b3c9cd143a3"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 182,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:20.974Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "6ae26c80-7a06-4c72-8e8f-6a1b401fb087",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c9bcd2c4-b809-49f6-b5af-604a1f687c32"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "script": {
                            "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-8",
                            "type": "text/javascript",
                            "_lastExecutionId": "6ae26c80-7a06-4c72-8e8f-6a1b401fb087",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 183,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.007Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c2debc6c-e95f-4705-9af1-29a20b0a9cb9-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "6ae26c80-7a06-4c72-8e8f-6a1b401fb087",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c9bcd2c4-b809-49f6-b5af-604a1f687c32"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 184,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.017Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "570a0731-53d6-446f-a4c2-1c133e08e760",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "570a0731-53d6-446f-a4c2-1c133e08e760-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "4fbfb160-aec1-40f4-9edb-784c4a5c0783",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "fbc5f90e-79f4-4529-aae4-4f8d9dadbfae"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "script": {
                            "id": "570a0731-53d6-446f-a4c2-1c133e08e760-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "4fbfb160-aec1-40f4-9edb-784c4a5c0783",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 185,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:21.039Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "570a0731-53d6-446f-a4c2-1c133e08e760",
                            "execution": "4fbfb160-aec1-40f4-9edb-784c4a5c0783",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 186,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:21.040Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "570a0731-53d6-446f-a4c2-1c133e08e760",
                            "execution": "4fbfb160-aec1-40f4-9edb-784c4a5c0783",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 187,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.046Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "scriptId": "570a0731-53d6-446f-a4c2-1c133e08e760",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "570a0731-53d6-446f-a4c2-1c133e08e760-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "4fbfb160-aec1-40f4-9edb-784c4a5c0783",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "fbc5f90e-79f4-4529-aae4-4f8d9dadbfae"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 188,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:21.050Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        },
                        "scriptResults": [
                            "ab6ca022-465c-404b-bfa8-0c3ae7480c80",
                            "885bf21d-0b81-4124-a6f0-2d57ae86d024",
                            "f1590053-9f1c-4e00-9239-196ce2a7a00a"
                        ]
                    }
                },
                {
                    "id": 189,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:21.052Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6974e185-2659-41e7-a999-47d40ae39db0",
                            "length": 15,
                            "cycles": 1,
                            "position": 7,
                            "iteration": 0,
                            "httpRequestId": "56522870-0237-44bc-9b93-3ac3529dc01b",
                            "id": "6974e185-2659-41e7-a999-47d40ae39db0-6"
                        },
                        "item": {
                            "id": "ba676e84-c709-4023-ad5e-18a382800bad",
                            "name": "service_activities/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities/{{id_sa}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "5fe9f551-e617-4ffb-9716-aa7e0d9bc864"
                            }
                        }
                    }
                },
                {
                    "id": 190,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:21.055Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 191,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:21.057Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "events": [
                            "1b82b7ba-8b5e-4c53-938c-fce9973e31c5",
                            "77ded75a-2676-4a4f-9f79-78220d7392f7"
                        ]
                    }
                },
                {
                    "id": 192,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.057Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-10",
                                "type": "text/javascript",
                                "_lastExecutionId": "d3522327-b287-45fc-9a83-d1974c13428a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "ffdca2a4-fee1-436c-8162-6558a0dd8637"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-10",
                            "type": "text/javascript",
                            "_lastExecutionId": "d3522327-b287-45fc-9a83-d1974c13428a",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 193,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.068Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-10",
                                "type": "text/javascript",
                                "_lastExecutionId": "d3522327-b287-45fc-9a83-d1974c13428a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "ffdca2a4-fee1-436c-8162-6558a0dd8637"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 194,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.069Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "da1324ea-a844-489e-93f6-16c3599b146e",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "9426b343-5fa5-4830-98fe-cfccf043bb10"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "da1324ea-a844-489e-93f6-16c3599b146e",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 195,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.078Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "da1324ea-a844-489e-93f6-16c3599b146e",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "9426b343-5fa5-4830-98fe-cfccf043bb10"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 196,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:21.079Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "scriptResults": [
                            "4c3f3f1a-047e-4074-8323-2c345d862ab4",
                            "d60f64ce-b9bf-49ef-86bf-fe2a8f4501b6"
                        ]
                    }
                },
                {
                    "id": 197,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:21.084Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 481,
                                "mode": "raw"
                            },
                            "id": "6cf24821-5805-4cef-af31-608072289c4c",
                            "events": []
                        }
                    }
                },
                {
                    "id": 198,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:21.304Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "481"
                            },
                            "body": {
                                "contentLength": 481,
                                "mode": "raw"
                            },
                            "id": "689940b0-c7ec-40b0-be38-a99f3c88b1aa",
                            "events": []
                        },
                        "response": {
                            "id": "7601894c-a910-4f7a-994d-bd6821be0241",
                            "status": "Created",
                            "code": 201,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:21 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "729",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 199,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:21.305Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                                "length": 15,
                                "cycles": 1,
                                "position": 8,
                                "iteration": 0,
                                "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb"
                            }
                        },
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        }
                    }
                },
                {
                    "id": 200,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:21.305Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "481"
                            },
                            "body": {
                                "contentLength": 481,
                                "mode": "raw"
                            },
                            "id": "689940b0-c7ec-40b0-be38-a99f3c88b1aa",
                            "events": []
                        },
                        "response": {
                            "id": "47b3a16f-2141-41e0-894f-13d542c897f1",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 217,
                            "responseSize": 729,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:21 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "729",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 729
                            }
                        }
                    }
                },
                {
                    "id": 201,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:21.306Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "481"
                            },
                            "body": {
                                "contentLength": 481,
                                "mode": "raw"
                            },
                            "id": "689940b0-c7ec-40b0-be38-a99f3c88b1aa",
                            "events": []
                        },
                        "response": {
                            "id": "47b3a16f-2141-41e0-894f-13d542c897f1",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 217,
                            "responseSize": 729,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:21 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "729",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 729
                            }
                        }
                    }
                },
                {
                    "id": 202,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:21.308Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "events": [
                            "6c2cfa48-84c3-4fb3-aebc-3b3c9cd143a3",
                            "f78ca1c3-c67a-4f81-8b4e-f9e6a645cdb5",
                            "3a87940f-ce63-4a10-987e-b86e70d0b176"
                        ]
                    }
                },
                {
                    "id": 203,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.312Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-10",
                                "type": "text/javascript",
                                "_lastExecutionId": "2a581915-822d-4555-ae94-ba6082a61108",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "db10d761-17ac-4d07-b044-28356725be6b"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-10",
                            "type": "text/javascript",
                            "_lastExecutionId": "2a581915-822d-4555-ae94-ba6082a61108",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 204,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.353Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-10",
                                "type": "text/javascript",
                                "_lastExecutionId": "2a581915-822d-4555-ae94-ba6082a61108",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "db10d761-17ac-4d07-b044-28356725be6b"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 205,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.363Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "005c47e7-0f1a-4e3a-9cd6-447147dd2b3a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2a616b49-4a77-4545-956f-6a412922d08e"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "005c47e7-0f1a-4e3a-9cd6-447147dd2b3a",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 206,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.389Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "005c47e7-0f1a-4e3a-9cd6-447147dd2b3a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2a616b49-4a77-4545-956f-6a412922d08e"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 207,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.390Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "a7073e82-7e82-48c5-82e6-aa2f1169825e",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "bdc89b22-9df7-4780-ac5b-159ab1583d4d"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "script": {
                            "id": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "a7073e82-7e82-48c5-82e6-aa2f1169825e",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 208,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:21.425Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e",
                            "execution": "a7073e82-7e82-48c5-82e6-aa2f1169825e",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 201",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "938a1a62-ec16-407e-a2fd-f8473506475f"
                            }
                        ]
                    }
                },
                {
                    "id": 209,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:21.426Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e",
                            "execution": "a7073e82-7e82-48c5-82e6-aa2f1169825e",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 210,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.442Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "scriptId": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c6ac2b8e-0d06-4d8c-9fdf-6257467a732e-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "a7073e82-7e82-48c5-82e6-aa2f1169825e",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "bdc89b22-9df7-4780-ac5b-159ab1583d4d"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 211,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:21.452Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        },
                        "scriptResults": [
                            "d8dd6fe6-f101-446a-bdc5-3be9f1032fa9",
                            "6de113a3-da8a-4656-adb8-236d1b4a70b7",
                            "c2895092-b3d8-476c-90d9-c7f3379dd188"
                        ]
                    }
                },
                {
                    "id": 212,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:21.454Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "6594bba5-2232-436b-8318-17e5e3f35717",
                            "length": 15,
                            "cycles": 1,
                            "position": 8,
                            "iteration": 0,
                            "httpRequestId": "df3e09a3-a6e7-474f-ad5f-4a490c4d36bb",
                            "id": "6594bba5-2232-436b-8318-17e5e3f35717-6"
                        },
                        "item": {
                            "id": "cae7a4bc-b826-42ef-a24e-50b2bd138a19",
                            "name": "service_activitiestemplates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 481,
                                    "mode": "raw"
                                },
                                "id": "f716ae73-97b0-44c3-8f5f-3404f1f907a1"
                            }
                        }
                    }
                },
                {
                    "id": 213,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:21.461Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 214,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:21.462Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "events": [
                            "ffdca2a4-fee1-436c-8162-6558a0dd8637",
                            "9426b343-5fa5-4830-98fe-cfccf043bb10"
                        ]
                    }
                },
                {
                    "id": 215,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.463Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-11",
                                "type": "text/javascript",
                                "_lastExecutionId": "7aed0c7a-f5a4-4783-ae6b-d494bd01cdbb",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "976a01b0-5e0e-41b9-aef4-31699301e8b9"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-11",
                            "type": "text/javascript",
                            "_lastExecutionId": "7aed0c7a-f5a4-4783-ae6b-d494bd01cdbb",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 216,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.489Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-11",
                                "type": "text/javascript",
                                "_lastExecutionId": "7aed0c7a-f5a4-4783-ae6b-d494bd01cdbb",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "976a01b0-5e0e-41b9-aef4-31699301e8b9"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 217,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.493Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "2bffabc7-f453-4045-855e-9fca37ba86b5",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "044514ee-b134-4f56-94cd-dbf4def7a5c7"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-3",
                            "type": "text/javascript",
                            "_lastExecutionId": "2bffabc7-f453-4045-855e-9fca37ba86b5",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 218,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.516Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "2bffabc7-f453-4045-855e-9fca37ba86b5",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "044514ee-b134-4f56-94cd-dbf4def7a5c7"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 219,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:21.519Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "scriptResults": [
                            "a0674495-dee1-4316-a710-9a4d836de60d",
                            "28589d2c-45f2-4f97-8019-05723d59887e"
                        ]
                    }
                },
                {
                    "id": 220,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:21.525Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693/phase_templates",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 772,
                                "mode": "raw"
                            },
                            "id": "8d7cfae9-5883-41ee-a7b8-e130d6b52938",
                            "events": []
                        }
                    }
                },
                {
                    "id": 221,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:21.742Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693/phase_templates",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "772"
                            },
                            "body": {
                                "contentLength": 772,
                                "mode": "raw"
                            },
                            "id": "8e235313-a98c-4f89-b448-a5d1b4b4305b",
                            "events": []
                        },
                        "response": {
                            "id": "5c80f3f4-9d48-4cdc-8066-3ca0feeabc7e",
                            "status": "Created",
                            "code": 201,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:21 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "1116",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 222,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:21.755Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                                "length": 15,
                                "cycles": 1,
                                "position": 9,
                                "iteration": 0,
                                "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5"
                            }
                        },
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        }
                    }
                },
                {
                    "id": 223,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:21.755Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693/phase_templates",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "772"
                            },
                            "body": {
                                "contentLength": 772,
                                "mode": "raw"
                            },
                            "id": "8e235313-a98c-4f89-b448-a5d1b4b4305b",
                            "events": []
                        },
                        "response": {
                            "id": "36dad11d-cfe8-41a0-9794-732641126da0",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 221,
                            "responseSize": 1116,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:21 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "1116",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1116
                            }
                        }
                    }
                },
                {
                    "id": 224,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:21.756Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "request": {
                            "method": "POST",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693/phase_templates",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "772"
                            },
                            "body": {
                                "contentLength": 772,
                                "mode": "raw"
                            },
                            "id": "8e235313-a98c-4f89-b448-a5d1b4b4305b",
                            "events": []
                        },
                        "response": {
                            "id": "36dad11d-cfe8-41a0-9794-732641126da0",
                            "status": "Created",
                            "code": 201,
                            "responseTime": 221,
                            "responseSize": 1116,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:21 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "1116",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1116
                            }
                        }
                    }
                },
                {
                    "id": 225,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:21.758Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "events": [
                            "db10d761-17ac-4d07-b044-28356725be6b",
                            "2a616b49-4a77-4545-956f-6a412922d08e",
                            "4e5d2a3f-0578-4600-853a-971f2f026d5e"
                        ]
                    }
                },
                {
                    "id": 226,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.758Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-11",
                                "type": "text/javascript",
                                "_lastExecutionId": "ba8cdf7f-f257-4e11-b081-1b1c56d803f8",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "ce806d92-4ccb-4e69-91d7-3de04aedce70"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-11",
                            "type": "text/javascript",
                            "_lastExecutionId": "ba8cdf7f-f257-4e11-b081-1b1c56d803f8",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 227,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.800Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-11",
                                "type": "text/javascript",
                                "_lastExecutionId": "ba8cdf7f-f257-4e11-b081-1b1c56d803f8",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "ce806d92-4ccb-4e69-91d7-3de04aedce70"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 228,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.814Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "367646b8-96c5-4c3d-91c7-8ce584f565b7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "5568b578-865c-41e7-88a2-fb443f9f74c2"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-3",
                            "type": "text/javascript",
                            "_lastExecutionId": "367646b8-96c5-4c3d-91c7-8ce584f565b7",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 229,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.832Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-3",
                                "type": "text/javascript",
                                "_lastExecutionId": "367646b8-96c5-4c3d-91c7-8ce584f565b7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "5568b578-865c-41e7-88a2-fb443f9f74c2"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 230,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.836Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "bd4c0df5-2c09-41de-b917-b9a2c92183d6",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "bd4c0df5-2c09-41de-b917-b9a2c92183d6-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "c98ef17d-1ad4-4c27-8107-3aa09d3ad8dc",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "3da4361a-1692-4148-840a-c0b7724a287b"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "script": {
                            "id": "bd4c0df5-2c09-41de-b917-b9a2c92183d6-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "c98ef17d-1ad4-4c27-8107-3aa09d3ad8dc",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 231,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:21.846Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "bd4c0df5-2c09-41de-b917-b9a2c92183d6",
                            "execution": "c98ef17d-1ad4-4c27-8107-3aa09d3ad8dc",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 201",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "938a1a62-ec16-407e-a2fd-f8473506475f"
                            }
                        ]
                    }
                },
                {
                    "id": 232,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:21.846Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "bd4c0df5-2c09-41de-b917-b9a2c92183d6",
                            "execution": "c98ef17d-1ad4-4c27-8107-3aa09d3ad8dc",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 233,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.853Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "scriptId": "bd4c0df5-2c09-41de-b917-b9a2c92183d6",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "bd4c0df5-2c09-41de-b917-b9a2c92183d6-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "c98ef17d-1ad4-4c27-8107-3aa09d3ad8dc",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "3da4361a-1692-4148-840a-c0b7724a287b"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 234,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:21.857Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        },
                        "scriptResults": [
                            "9d2a98e3-741e-40ec-aa35-0b04f633bf95",
                            "f1f2a88e-7108-46b1-95e0-e1ee67a55062",
                            "b74a1af8-ba6b-40aa-b736-1959750c895f"
                        ]
                    }
                },
                {
                    "id": 235,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:21.859Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145",
                            "length": 15,
                            "cycles": 1,
                            "position": 9,
                            "iteration": 0,
                            "httpRequestId": "afc9ab66-ba5a-43b3-b584-a0bbed638da5",
                            "id": "a2c6c943-f9db-4d17-a9a2-06d9a5de0145-6"
                        },
                        "item": {
                            "id": "8b1a3dd4-05df-47b7-bb66-63b38253e5b9",
                            "name": "/v1/service_activities_templates/{serviceActivityTemplateId}/phase_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "POST",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}/phase_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 772,
                                    "mode": "raw"
                                },
                                "id": "f727059a-3e19-400a-9591-5e2548028a1f"
                            }
                        }
                    }
                },
                {
                    "id": 236,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:21.867Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 237,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:21.868Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "events": [
                            "976a01b0-5e0e-41b9-aef4-31699301e8b9",
                            "044514ee-b134-4f56-94cd-dbf4def7a5c7"
                        ]
                    }
                },
                {
                    "id": 238,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.869Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-12",
                                "type": "text/javascript",
                                "_lastExecutionId": "c9e98211-e073-492a-a994-a96eb1e528c4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c04d1ba0-b3ae-4306-a6a0-2b8fa80abfc3"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-12",
                            "type": "text/javascript",
                            "_lastExecutionId": "c9e98211-e073-492a-a994-a96eb1e528c4",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 239,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.878Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-12",
                                "type": "text/javascript",
                                "_lastExecutionId": "c9e98211-e073-492a-a994-a96eb1e528c4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c04d1ba0-b3ae-4306-a6a0-2b8fa80abfc3"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 240,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:21.878Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "2e1c4232-3003-4e9a-8c1f-f1dfa59ecb1c",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "081d32ca-4a68-40e8-a656-0a82fa5dd381"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-4",
                            "type": "text/javascript",
                            "_lastExecutionId": "2e1c4232-3003-4e9a-8c1f-f1dfa59ecb1c",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 241,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:21.890Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "2e1c4232-3003-4e9a-8c1f-f1dfa59ecb1c",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "081d32ca-4a68-40e8-a656-0a82fa5dd381"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 242,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:21.891Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "scriptResults": [
                            "142ffb9d-be35-4210-b856-c44242da70a7",
                            "a656fba3-dd05-473f-acc8-697f239a5e2d"
                        ]
                    }
                },
                {
                    "id": 243,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:21.896Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/phase_templates/9678",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 823,
                                "mode": "raw"
                            },
                            "id": "53fd8ab2-04b6-4330-a21d-c8c37c11f74b",
                            "events": []
                        }
                    }
                },
                {
                    "id": 244,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:22.140Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/phase_templates/9678",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "823"
                            },
                            "body": {
                                "contentLength": 823,
                                "mode": "raw"
                            },
                            "id": "5b3ad459-c795-4a49-9329-5ec1148d7c63",
                            "events": []
                        },
                        "response": {
                            "id": "d3fe4695-ee27-4265-87ac-455f5ef5b8ea",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 245,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:22.143Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                                "length": 15,
                                "cycles": 1,
                                "position": 10,
                                "iteration": 0,
                                "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2"
                            }
                        },
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        }
                    }
                },
                {
                    "id": 246,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:22.143Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/phase_templates/9678",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "823"
                            },
                            "body": {
                                "contentLength": 823,
                                "mode": "raw"
                            },
                            "id": "5b3ad459-c795-4a49-9329-5ec1148d7c63",
                            "events": []
                        },
                        "response": {
                            "id": "808089fa-b64f-4ea6-83ef-d0b6920cb80d",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 241,
                            "responseSize": 1120,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1120
                            }
                        }
                    }
                },
                {
                    "id": 247,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:22.143Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "request": {
                            "method": "PUT",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/phase_templates/9678",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "823"
                            },
                            "body": {
                                "contentLength": 823,
                                "mode": "raw"
                            },
                            "id": "5b3ad459-c795-4a49-9329-5ec1148d7c63",
                            "events": []
                        },
                        "response": {
                            "id": "808089fa-b64f-4ea6-83ef-d0b6920cb80d",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 241,
                            "responseSize": 1120,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1120
                            }
                        }
                    }
                },
                {
                    "id": 248,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:22.144Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "events": [
                            "ce806d92-4ccb-4e69-91d7-3de04aedce70",
                            "5568b578-865c-41e7-88a2-fb443f9f74c2",
                            "2d1844c3-265a-4c1a-b744-7169bcfc592b"
                        ]
                    }
                },
                {
                    "id": 249,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.145Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-12",
                                "type": "text/javascript",
                                "_lastExecutionId": "5077d32e-0044-4614-9f80-90827a7f25ed",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b577671d-05f7-4d88-8ad5-572b6c2f4687"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-12",
                            "type": "text/javascript",
                            "_lastExecutionId": "5077d32e-0044-4614-9f80-90827a7f25ed",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 250,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.160Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-12",
                                "type": "text/javascript",
                                "_lastExecutionId": "5077d32e-0044-4614-9f80-90827a7f25ed",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "b577671d-05f7-4d88-8ad5-572b6c2f4687"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 251,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.163Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "136735c7-0d6d-426c-b8f4-a6a735eb2d9a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "a001a707-dbba-43c3-ab88-2fa4cf88d981"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-4",
                            "type": "text/javascript",
                            "_lastExecutionId": "136735c7-0d6d-426c-b8f4-a6a735eb2d9a",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 252,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.177Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-4",
                                "type": "text/javascript",
                                "_lastExecutionId": "136735c7-0d6d-426c-b8f4-a6a735eb2d9a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "a001a707-dbba-43c3-ab88-2fa4cf88d981"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 253,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.177Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "dfa98e90-e936-4893-a0f2-e9e01c1e91c4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "4a7ae18c-cb10-42aa-a1e4-7e841e4a6f21"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "script": {
                            "id": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "dfa98e90-e936-4893-a0f2-e9e01c1e91c4",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 254,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:22.187Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0",
                            "execution": "dfa98e90-e936-4893-a0f2-e9e01c1e91c4",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 255,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:22.188Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0",
                            "execution": "dfa98e90-e936-4893-a0f2-e9e01c1e91c4",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 256,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.194Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "scriptId": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "60f7dd0c-6d4e-4f98-bb91-03f7000154b0-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "dfa98e90-e936-4893-a0f2-e9e01c1e91c4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "4a7ae18c-cb10-42aa-a1e4-7e841e4a6f21"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 257,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:22.195Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        },
                        "scriptResults": [
                            "3c692e3d-2ea8-45f6-80b4-601e98fb0b1d",
                            "a922e493-a847-495f-ace6-dcde7964ffe0",
                            "f87a9dad-e2e6-4083-a6ea-810e2248333e"
                        ]
                    }
                },
                {
                    "id": 258,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:22.197Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2",
                            "length": 15,
                            "cycles": 1,
                            "position": 10,
                            "iteration": 0,
                            "httpRequestId": "062e0a15-06e1-4aae-b5ab-b0f2dac376f2",
                            "id": "94cf8f6c-b07c-489b-b337-c19ad1afa7e2-6"
                        },
                        "item": {
                            "id": "764064cd-9b73-4891-acc1-ae18e54ba0fc",
                            "name": "service_activities_templates/phase_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PUT",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/phase_templates/{{id_sa_phase_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 849,
                                    "mode": "raw"
                                },
                                "id": "e596b642-0d21-4cb2-90ea-e14eadaebe67"
                            }
                        }
                    }
                },
                {
                    "id": 259,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:22.203Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 260,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:22.205Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "events": [
                            "c04d1ba0-b3ae-4306-a6a0-2b8fa80abfc3",
                            "081d32ca-4a68-40e8-a656-0a82fa5dd381"
                        ]
                    }
                },
                {
                    "id": 261,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.205Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-13",
                                "type": "text/javascript",
                                "_lastExecutionId": "bfabf9d6-440a-4df3-a6c5-4834e470c702",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "0266e3ae-6314-42e2-ae0c-b94148cfff96"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-13",
                            "type": "text/javascript",
                            "_lastExecutionId": "bfabf9d6-440a-4df3-a6c5-4834e470c702",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 262,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.214Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-13",
                                "type": "text/javascript",
                                "_lastExecutionId": "bfabf9d6-440a-4df3-a6c5-4834e470c702",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "0266e3ae-6314-42e2-ae0c-b94148cfff96"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 263,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.221Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "dfe3ed5b-1b4c-47e6-9c46-e198c4a338d7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6c753a72-d512-4185-99b3-7e7562e56b29"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-5",
                            "type": "text/javascript",
                            "_lastExecutionId": "dfe3ed5b-1b4c-47e6-9c46-e198c4a338d7",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 264,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.240Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "dfe3ed5b-1b4c-47e6-9c46-e198c4a338d7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6c753a72-d512-4185-99b3-7e7562e56b29"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 265,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:22.245Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "scriptResults": [
                            "3289f794-cf16-49f9-8fc9-c9b0e9300c25",
                            "a996b099-583a-47b0-a8f0-b168b0515492"
                        ]
                    }
                },
                {
                    "id": 266,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:22.251Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 487,
                                "mode": "raw"
                            },
                            "id": "d159d7b5-66b8-4ba5-a648-fcbe1c64d1ce",
                            "events": []
                        }
                    }
                },
                {
                    "id": 267,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:22.511Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "487"
                            },
                            "body": {
                                "contentLength": 487,
                                "mode": "raw"
                            },
                            "id": "81b55c4f-5bfc-48d4-a882-04e8cfe6bb35",
                            "events": []
                        },
                        "response": {
                            "id": "f9af59c4-3ef7-4d8b-8f30-cbefc832932e",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 268,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:22.512Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                                "length": 15,
                                "cycles": 1,
                                "position": 11,
                                "iteration": 0,
                                "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23"
                            }
                        },
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        }
                    }
                },
                {
                    "id": 269,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:22.512Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "487"
                            },
                            "body": {
                                "contentLength": 487,
                                "mode": "raw"
                            },
                            "id": "81b55c4f-5bfc-48d4-a882-04e8cfe6bb35",
                            "events": []
                        },
                        "response": {
                            "id": "b3403cda-1fd8-485c-b63c-91539ec4bdc3",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 257,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 270,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:22.514Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "request": {
                            "method": "PATCH",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "Content-Type": "application/json",
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive",
                                "Content-Length": "487"
                            },
                            "body": {
                                "contentLength": 487,
                                "mode": "raw"
                            },
                            "id": "81b55c4f-5bfc-48d4-a882-04e8cfe6bb35",
                            "events": []
                        },
                        "response": {
                            "id": "b3403cda-1fd8-485c-b63c-91539ec4bdc3",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 257,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 271,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:22.516Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "events": [
                            "b577671d-05f7-4d88-8ad5-572b6c2f4687",
                            "a001a707-dbba-43c3-ab88-2fa4cf88d981",
                            "1050e8b2-97c0-46b1-82a1-1f2b55efdd1e"
                        ]
                    }
                },
                {
                    "id": 272,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.516Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-13",
                                "type": "text/javascript",
                                "_lastExecutionId": "66fd058b-997c-4b86-825b-139b5a11e846",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "4c31d069-28f8-4002-b2b6-bf39d1725c2f"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-13",
                            "type": "text/javascript",
                            "_lastExecutionId": "66fd058b-997c-4b86-825b-139b5a11e846",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 273,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.532Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-13",
                                "type": "text/javascript",
                                "_lastExecutionId": "66fd058b-997c-4b86-825b-139b5a11e846",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "4c31d069-28f8-4002-b2b6-bf39d1725c2f"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 274,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.536Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "1ffb44ae-2c16-4234-8613-f9d922b7a3c4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2ab0ab5f-a146-45c9-9d99-578e82a3f5df"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-5",
                            "type": "text/javascript",
                            "_lastExecutionId": "1ffb44ae-2c16-4234-8613-f9d922b7a3c4",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 275,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.548Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-5",
                                "type": "text/javascript",
                                "_lastExecutionId": "1ffb44ae-2c16-4234-8613-f9d922b7a3c4",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2ab0ab5f-a146-45c9-9d99-578e82a3f5df"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 276,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.548Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "3845a1e3-2c88-44c8-87a4-795211072433",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "dfe79517-165a-46fe-a00f-9f89741124d7"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "script": {
                            "id": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "3845a1e3-2c88-44c8-87a4-795211072433",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 277,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:22.557Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f",
                            "execution": "3845a1e3-2c88-44c8-87a4-795211072433",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 278,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:22.558Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f",
                            "execution": "3845a1e3-2c88-44c8-87a4-795211072433",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 279,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.564Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "scriptId": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "6dcc5d06-abb3-44da-acf1-e0061cbe9f7f-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "3845a1e3-2c88-44c8-87a4-795211072433",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "dfe79517-165a-46fe-a00f-9f89741124d7"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 280,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:22.568Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        },
                        "scriptResults": [
                            "cbc07208-454b-453a-8487-8c1137e16494",
                            "45d197c8-14c0-4e5a-b1ce-a3ddf1590521",
                            "da724fcc-f824-4f58-97bb-4fe2ed76de89"
                        ]
                    }
                },
                {
                    "id": 281,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:22.571Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a",
                            "length": 15,
                            "cycles": 1,
                            "position": 11,
                            "iteration": 0,
                            "httpRequestId": "592083cc-6849-4ed1-8670-6796bf346f23",
                            "id": "0f8290d4-7c9d-4b84-9a20-60b1e7b1cd9a-6"
                        },
                        "item": {
                            "id": "6260bb59-7eaf-4445-a284-7af238d000ae",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "PATCH",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 487,
                                    "mode": "raw"
                                },
                                "id": "8dec26da-3c3e-4d5d-9740-4c6f55f0375a"
                            }
                        }
                    }
                },
                {
                    "id": 282,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:22.574Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 283,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:22.575Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "events": [
                            "0266e3ae-6314-42e2-ae0c-b94148cfff96",
                            "6c753a72-d512-4185-99b3-7e7562e56b29"
                        ]
                    }
                },
                {
                    "id": 284,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.576Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-14",
                                "type": "text/javascript",
                                "_lastExecutionId": "77c25997-9cfc-4d7a-b512-269c2fa7e83b",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "8642f7e1-fac5-46df-819e-3389bc5bb3ef"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-14",
                            "type": "text/javascript",
                            "_lastExecutionId": "77c25997-9cfc-4d7a-b512-269c2fa7e83b",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 285,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.585Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-14",
                                "type": "text/javascript",
                                "_lastExecutionId": "77c25997-9cfc-4d7a-b512-269c2fa7e83b",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "8642f7e1-fac5-46df-819e-3389bc5bb3ef"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 286,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:22.585Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "6ed366bd-8e13-4f2b-8a49-d3df0cc5d0ff",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6748810c-a1fb-49b8-bbfe-e2aef135851e"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-6",
                            "type": "text/javascript",
                            "_lastExecutionId": "6ed366bd-8e13-4f2b-8a49-d3df0cc5d0ff",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 287,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:22.596Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "6ed366bd-8e13-4f2b-8a49-d3df0cc5d0ff",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6748810c-a1fb-49b8-bbfe-e2aef135851e"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 288,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:22.597Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "scriptResults": [
                            "8db93e84-2d65-46c5-8c1f-c41a422f1aad",
                            "dfe80ff5-293b-4b5a-9301-4a6ada233c59"
                        ]
                    }
                },
                {
                    "id": 289,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:22.602Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "e9df9374-5080-4c4a-b36f-d7381d3ea37a",
                            "events": []
                        }
                    }
                },
                {
                    "id": 290,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:22.945Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "1b199c55-bb94-4efc-8531-85d3d8e7c837",
                            "events": []
                        },
                        "response": {
                            "id": "a1b60417-85aa-4a58-88bf-6a85b29c738e",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json;charset=UTF-8",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 291,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:22.998Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                                "length": 15,
                                "cycles": 1,
                                "position": 12,
                                "iteration": 0,
                                "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b"
                            }
                        },
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        }
                    }
                },
                {
                    "id": 292,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:22.998Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "1b199c55-bb94-4efc-8531-85d3d8e7c837",
                            "events": []
                        },
                        "response": {
                            "id": "e35c0c9a-f96b-49b4-b7f8-49f2bfd5b200",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 389,
                            "responseSize": 193397,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json;charset=UTF-8",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 193397
                            }
                        }
                    }
                },
                {
                    "id": 293,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:22.999Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "1b199c55-bb94-4efc-8531-85d3d8e7c837",
                            "events": []
                        },
                        "response": {
                            "id": "e35c0c9a-f96b-49b4-b7f8-49f2bfd5b200",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 389,
                            "responseSize": 193397,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:22 GMT",
                                "Content-Type": "application/json;charset=UTF-8",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 193397
                            }
                        }
                    }
                },
                {
                    "id": 294,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:23.002Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "events": [
                            "4c31d069-28f8-4002-b2b6-bf39d1725c2f",
                            "2ab0ab5f-a146-45c9-9d99-578e82a3f5df",
                            "cdc2a37e-6476-4e74-9ea2-bcf35ba2d3c9"
                        ]
                    }
                },
                {
                    "id": 295,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.004Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-14",
                                "type": "text/javascript",
                                "_lastExecutionId": "8a37b977-cfa5-4119-8cf2-50f6c8d24bae",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "46991593-ca8b-4db4-8793-5e199775c917"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-14",
                            "type": "text/javascript",
                            "_lastExecutionId": "8a37b977-cfa5-4119-8cf2-50f6c8d24bae",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 296,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.038Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-14",
                                "type": "text/javascript",
                                "_lastExecutionId": "8a37b977-cfa5-4119-8cf2-50f6c8d24bae",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "46991593-ca8b-4db4-8793-5e199775c917"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 297,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.043Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "76010318-fddd-4fe0-9fdc-aee91fbf4274",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "28949fcb-947e-4210-bbd0-b157cda2ee77"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-6",
                            "type": "text/javascript",
                            "_lastExecutionId": "76010318-fddd-4fe0-9fdc-aee91fbf4274",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 298,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.069Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-6",
                                "type": "text/javascript",
                                "_lastExecutionId": "76010318-fddd-4fe0-9fdc-aee91fbf4274",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "28949fcb-947e-4210-bbd0-b157cda2ee77"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 299,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.076Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "c4002aa2-389b-4ca1-bfa2-03e71852d543",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c4002aa2-389b-4ca1-bfa2-03e71852d543-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "f5331e00-c098-4dfc-b0ee-9f1d5b013482",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "44936741-7924-4db9-8a74-78bf79dd7286"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "script": {
                            "id": "c4002aa2-389b-4ca1-bfa2-03e71852d543-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "f5331e00-c098-4dfc-b0ee-9f1d5b013482",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 300,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:23.127Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "c4002aa2-389b-4ca1-bfa2-03e71852d543",
                            "execution": "f5331e00-c098-4dfc-b0ee-9f1d5b013482",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 301,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:23.127Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "c4002aa2-389b-4ca1-bfa2-03e71852d543",
                            "execution": "f5331e00-c098-4dfc-b0ee-9f1d5b013482",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 302,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.135Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "scriptId": "c4002aa2-389b-4ca1-bfa2-03e71852d543",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "c4002aa2-389b-4ca1-bfa2-03e71852d543-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "f5331e00-c098-4dfc-b0ee-9f1d5b013482",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "44936741-7924-4db9-8a74-78bf79dd7286"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 303,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:23.139Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        },
                        "scriptResults": [
                            "e538d32f-5bf1-41f3-a098-0769c746aafd",
                            "4a6105cc-9101-4a70-a0a9-c1930a7b6b15",
                            "6bbf03a6-b0c3-4a04-b8a0-88d8cc135ce7"
                        ]
                    }
                },
                {
                    "id": 304,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:23.142Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "14e2179b-1cbe-4442-b456-ed25b725cbb3",
                            "length": 15,
                            "cycles": 1,
                            "position": 12,
                            "iteration": 0,
                            "httpRequestId": "fa2d5832-2d0a-47be-aadf-576506e0961b",
                            "id": "14e2179b-1cbe-4442-b456-ed25b725cbb3-6"
                        },
                        "item": {
                            "id": "832723f2-a7f4-4272-bd23-1786b3ea6763",
                            "name": "service_activities_templates",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "9bd406a7-1791-49d9-af25-ee54c68654c1"
                            }
                        }
                    }
                },
                {
                    "id": 305,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:23.145Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 306,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:23.147Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "events": [
                            "8642f7e1-fac5-46df-819e-3389bc5bb3ef",
                            "6748810c-a1fb-49b8-bbfe-e2aef135851e"
                        ]
                    }
                },
                {
                    "id": 307,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.147Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-15",
                                "type": "text/javascript",
                                "_lastExecutionId": "4f721ef5-946c-4107-a5c6-dd30e091cd3f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "de15733f-fae2-4f8e-a1e2-278e01125475"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-15",
                            "type": "text/javascript",
                            "_lastExecutionId": "4f721ef5-946c-4107-a5c6-dd30e091cd3f",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 308,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.157Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-15",
                                "type": "text/javascript",
                                "_lastExecutionId": "4f721ef5-946c-4107-a5c6-dd30e091cd3f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "de15733f-fae2-4f8e-a1e2-278e01125475"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 309,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.162Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "399eadda-3800-4ddf-a1fb-712f48c30f3f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "74467b4b-a0ae-42f6-9f85-8fb18eb611a7"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-7",
                            "type": "text/javascript",
                            "_lastExecutionId": "399eadda-3800-4ddf-a1fb-712f48c30f3f",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 310,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.170Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "399eadda-3800-4ddf-a1fb-712f48c30f3f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "74467b4b-a0ae-42f6-9f85-8fb18eb611a7"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 311,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:23.171Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "scriptResults": [
                            "81bf7b8a-a535-4666-8f46-1eb7654f9223",
                            "2050a4b9-74a3-4acd-817e-a1ec92ac5b8c"
                        ]
                    }
                },
                {
                    "id": 312,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:23.175Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "69b67c37-8896-4756-a338-5313a7a4a245",
                            "events": []
                        }
                    }
                },
                {
                    "id": 313,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:23.383Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "516866d1-00ec-436f-bfde-64149df67875",
                            "events": []
                        },
                        "response": {
                            "id": "40ec9653-3bb2-4763-9cd3-01d0d1968ca1",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:23 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 314,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:23.386Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                                "length": 15,
                                "cycles": 1,
                                "position": 13,
                                "iteration": 0,
                                "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92"
                            }
                        },
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        }
                    }
                },
                {
                    "id": 315,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:23.386Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "516866d1-00ec-436f-bfde-64149df67875",
                            "events": []
                        },
                        "response": {
                            "id": "dc0e66e8-6122-461a-8c3c-26018be1596d",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 205,
                            "responseSize": 1853,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:23 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1853
                            }
                        }
                    }
                },
                {
                    "id": 316,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:23.386Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "request": {
                            "method": "GET",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "516866d1-00ec-436f-bfde-64149df67875",
                            "events": []
                        },
                        "response": {
                            "id": "dc0e66e8-6122-461a-8c3c-26018be1596d",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 205,
                            "responseSize": 1853,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:23 GMT",
                                "Content-Type": "application/json",
                                "Transfer-Encoding": "chunked",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "Content-Encoding": "br",
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 1853
                            }
                        }
                    }
                },
                {
                    "id": 317,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:23.388Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "events": [
                            "46991593-ca8b-4db4-8793-5e199775c917",
                            "28949fcb-947e-4210-bbd0-b157cda2ee77",
                            "4300e21d-6bf7-450d-8ec7-8cf9440f04a3"
                        ]
                    }
                },
                {
                    "id": 318,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.389Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-15",
                                "type": "text/javascript",
                                "_lastExecutionId": "cf7e6290-9256-4dc3-974f-baa863eb177f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "bfcfb78a-a2f2-43f8-b31a-4e73341d05a8"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-15",
                            "type": "text/javascript",
                            "_lastExecutionId": "cf7e6290-9256-4dc3-974f-baa863eb177f",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 319,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.403Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-15",
                                "type": "text/javascript",
                                "_lastExecutionId": "cf7e6290-9256-4dc3-974f-baa863eb177f",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "bfcfb78a-a2f2-43f8-b31a-4e73341d05a8"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 320,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.406Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "183d5a7e-f704-4478-8026-f72c19e2aa26",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6c1338b7-4822-4d27-a362-eb3978c15751"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-7",
                            "type": "text/javascript",
                            "_lastExecutionId": "183d5a7e-f704-4478-8026-f72c19e2aa26",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 321,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.418Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-7",
                                "type": "text/javascript",
                                "_lastExecutionId": "183d5a7e-f704-4478-8026-f72c19e2aa26",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "6c1338b7-4822-4d27-a362-eb3978c15751"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 322,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.420Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "a97c1919-fdfa-4631-841b-07e352ae37d8",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "a97c1919-fdfa-4631-841b-07e352ae37d8-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "14d987b0-cab9-4c75-8c2d-6cd083b9bb1d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "40a9c774-b5a8-46ae-ad7b-8eec037b7af3"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "script": {
                            "id": "a97c1919-fdfa-4631-841b-07e352ae37d8-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "14d987b0-cab9-4c75-8c2d-6cd083b9bb1d",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 323,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:23.441Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "a97c1919-fdfa-4631-841b-07e352ae37d8",
                            "execution": "14d987b0-cab9-4c75-8c2d-6cd083b9bb1d",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 324,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:23.442Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "a97c1919-fdfa-4631-841b-07e352ae37d8",
                            "execution": "14d987b0-cab9-4c75-8c2d-6cd083b9bb1d",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 325,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.447Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "scriptId": "a97c1919-fdfa-4631-841b-07e352ae37d8",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "a97c1919-fdfa-4631-841b-07e352ae37d8-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "14d987b0-cab9-4c75-8c2d-6cd083b9bb1d",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "40a9c774-b5a8-46ae-ad7b-8eec037b7af3"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 326,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:23.452Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        },
                        "scriptResults": [
                            "dbb3cd4d-60d9-4549-8205-e129c01c2a5d",
                            "59cd7651-c274-4ea1-8aa4-42f98a3358eb",
                            "6072e964-c677-4b2c-a06d-30226aa4c4bd"
                        ]
                    }
                },
                {
                    "id": 327,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:23.454Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "98ffe1d5-1d12-4401-8c39-2530160cedd1",
                            "length": 15,
                            "cycles": 1,
                            "position": 13,
                            "iteration": 0,
                            "httpRequestId": "f120db22-932f-4949-a477-7dcec2897b92",
                            "id": "98ffe1d5-1d12-4401-8c39-2530160cedd1-6"
                        },
                        "item": {
                            "id": "c5220dc8-32f4-4ef7-b404-836a379efad3",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "GET",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "ec443f3f-ff11-4762-a052-183166aa4ea4"
                            }
                        }
                    }
                },
                {
                    "id": 328,
                    "event": "beforeItem",
                    "timestamp": "2021-09-08T13:02:23.469Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 329,
                    "event": "beforePrerequest",
                    "timestamp": "2021-09-08T13:02:23.474Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "events": [
                            "de15733f-fae2-4f8e-a1e2-278e01125475",
                            "74467b4b-a0ae-42f6-9f85-8fb18eb611a7"
                        ]
                    }
                },
                {
                    "id": 330,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.474Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-16",
                                "type": "text/javascript",
                                "_lastExecutionId": "14de32aa-102b-45e1-bb45-7ffd49fafa41",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "780eb312-df74-4294-80f6-a2642e9a2a6f"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "script": {
                            "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-16",
                            "type": "text/javascript",
                            "_lastExecutionId": "14de32aa-102b-45e1-bb45-7ffd49fafa41",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 331,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.496Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "scriptId": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-2"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "6ee820d5-b9b0-4c1c-ab4e-990df35e1c29-16",
                                "type": "text/javascript",
                                "_lastExecutionId": "14de32aa-102b-45e1-bb45-7ffd49fafa41",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "780eb312-df74-4294-80f6-a2642e9a2a6f"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 332,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.500Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "90c052de-a1fa-46b6-9aee-d83bbff3ed7a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "97c33811-c1a8-4503-a84a-25e0a9b8df95"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "script": {
                            "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-8",
                            "type": "text/javascript",
                            "_lastExecutionId": "90c052de-a1fa-46b6-9aee-d83bbff3ed7a",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 333,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.509Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "scriptId": "be0c47b2-5d90-4628-a663-aeca8a847fda",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-3"
                        },
                        "event": {
                            "listen": "prerequest",
                            "script": {
                                "id": "be0c47b2-5d90-4628-a663-aeca8a847fda-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "90c052de-a1fa-46b6-9aee-d83bbff3ed7a",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "97c33811-c1a8-4503-a84a-25e0a9b8df95"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 334,
                    "event": "prerequest",
                    "timestamp": "2021-09-08T13:02:23.509Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "scriptResults": [
                            "2abafc96-5ce4-44cc-8268-0001872802f6",
                            "60057fb5-580e-4006-9d4e-722483f19dc2"
                        ]
                    }
                },
                {
                    "id": 335,
                    "event": "beforeRequest",
                    "timestamp": "2021-09-08T13:02:23.513Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "2ed8f136-11f2-4769-871a-ae8605972f9e",
                            "events": []
                        }
                    }
                },
                {
                    "id": 336,
                    "event": "responseStart",
                    "timestamp": "2021-09-08T13:02:23.740Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "4899a6e5-8acf-4dbb-a8c1-04f33642b529",
                            "events": []
                        },
                        "response": {
                            "id": "73e0f02d-3c54-4578-88c6-2af216b38b67",
                            "status": "OK",
                            "code": 200,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:23 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 337,
                    "event": "io",
                    "timestamp": "2021-09-08T13:02:23.742Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "trace": {
                            "type": "http",
                            "source": "collection",
                            "cursor": {
                                "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                                "length": 15,
                                "cycles": 1,
                                "position": 14,
                                "iteration": 0,
                                "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb"
                            }
                        },
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        }
                    }
                },
                {
                    "id": 338,
                    "event": "request",
                    "timestamp": "2021-09-08T13:02:23.742Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "4899a6e5-8acf-4dbb-a8c1-04f33642b529",
                            "events": []
                        },
                        "response": {
                            "id": "b314c2c6-8e56-4473-8be3-ee439af64a4b",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 225,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:23 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 339,
                    "event": "response",
                    "timestamp": "2021-09-08T13:02:23.742Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "request": {
                            "method": "DELETE",
                            "url": "https://sbc-gateway-staging.specialized.com/service-action-service/v1/service_activities_templates/9693",
                            "headers": {
                                "Authorization": null,
                                "User-Agent": "PostmanRuntime/7.28.2",
                                "Accept": "*/*",
                                "Cache-Control": "no-cache",
                                "Postman-Token": null,
                                "Host": "sbc-gateway-staging.specialized.com",
                                "Accept-Encoding": "gzip, deflate, br",
                                "Connection": "keep-alive"
                            },
                            "body": {
                                "contentLength": 0
                            },
                            "id": "4899a6e5-8acf-4dbb-a8c1-04f33642b529",
                            "events": []
                        },
                        "response": {
                            "id": "b314c2c6-8e56-4473-8be3-ee439af64a4b",
                            "status": "OK",
                            "code": 200,
                            "responseTime": 225,
                            "responseSize": 0,
                            "_postman_propertyRequiresId": true,
                            "headers": {
                                "Date": "Wed, 08 Sep 2021 13:02:23 GMT",
                                "Content-Type": "application/json",
                                "Content-Length": "0",
                                "Connection": "keep-alive",
                                "x-amzn-RequestId": null,
                                "X-XSS-Protection": null,
                                "x-amzn-Remapped-Content-Length": null,
                                "X-Frame-Options": null,
                                "x-amzn-Remapped-Connection": null,
                                "x-amz-apigw-id": null,
                                "Vary": null,
                                "Cache-Control": "no-cache, no-store, max-age=0, must-revalidate",
                                "Expires": null,
                                "X-Content-Type-Options": null,
                                "Pragma": "no-cache",
                                "x-amzn-Remapped-Date": null,
                                "CF-Cache-Status": null,
                                "Expect-CT": null,
                                "Server": null,
                                "CF-RAY": null,
                                "alt-svc": null
                            },
                            "body": {
                                "contentLength": 0
                            }
                        }
                    }
                },
                {
                    "id": 340,
                    "event": "beforeTest",
                    "timestamp": "2021-09-08T13:02:23.744Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "events": [
                            "bfcfb78a-a2f2-43f8-b31a-4e73341d05a8",
                            "6c1338b7-4822-4d27-a362-eb3978c15751",
                            "b66e86b3-126c-48b6-a39c-7fbc6754f8ad"
                        ]
                    }
                },
                {
                    "id": 341,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.748Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-16",
                                "type": "text/javascript",
                                "_lastExecutionId": "8066fed9-fe92-45fd-ac20-ff3fa8ceca55",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c84703fd-e15f-4c49-8880-d3f01751bb6c"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "script": {
                            "id": "83615155-c91d-409a-bedd-2d839dfeb098-16",
                            "type": "text/javascript",
                            "_lastExecutionId": "8066fed9-fe92-45fd-ac20-ff3fa8ceca55",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 342,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.761Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "83615155-c91d-409a-bedd-2d839dfeb098",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-7"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "83615155-c91d-409a-bedd-2d839dfeb098-16",
                                "type": "text/javascript",
                                "_lastExecutionId": "8066fed9-fe92-45fd-ac20-ff3fa8ceca55",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "c84703fd-e15f-4c49-8880-d3f01751bb6c"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 343,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.766Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "fd507844-1985-4659-b66a-c9ec0d083ec7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d73ec408-4cb2-46ab-8b4f-b25c71f259d1"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "script": {
                            "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-8",
                            "type": "text/javascript",
                            "_lastExecutionId": "fd507844-1985-4659-b66a-c9ec0d083ec7",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 344,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.778Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "75d2125c-effe-47b7-a6ec-ac859e052ffb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-8"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "75d2125c-effe-47b7-a6ec-ac859e052ffb-8",
                                "type": "text/javascript",
                                "_lastExecutionId": "fd507844-1985-4659-b66a-c9ec0d083ec7",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "d73ec408-4cb2-46ab-8b4f-b25c71f259d1"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 345,
                    "event": "beforeScript",
                    "timestamp": "2021-09-08T13:02:23.778Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "b1cbdbb9-0678-4781-9ef8-4997618303df",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "b1cbdbb9-0678-4781-9ef8-4997618303df-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "103f22b8-3e2f-4a9f-a033-f741caaf89bd",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2a7f099f-4cfa-436d-bb03-0590e35e4000"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "script": {
                            "id": "b1cbdbb9-0678-4781-9ef8-4997618303df-2",
                            "type": "text/javascript",
                            "_lastExecutionId": "103f22b8-3e2f-4a9f-a033-f741caaf89bd",
                            "_postman_propertyRequiresId": true
                        }
                    }
                },
                {
                    "id": 346,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:23.788Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "b1cbdbb9-0678-4781-9ef8-4997618303df",
                            "execution": "103f22b8-3e2f-4a9f-a033-f741caaf89bd",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-10"
                        },
                        "assertion": [
                            {
                                "name": "Status code is 200",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 0,
                                "id": "22b2e8de-31a7-4d69-a4b9-caa44c1d0332"
                            }
                        ]
                    }
                },
                {
                    "id": 347,
                    "event": "assertion",
                    "timestamp": "2021-09-08T13:02:23.788Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "b1cbdbb9-0678-4781-9ef8-4997618303df",
                            "execution": "103f22b8-3e2f-4a9f-a033-f741caaf89bd",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-10"
                        },
                        "assertion": [
                            {
                                "name": "Response time is less than 20000 ms",
                                "async": false,
                                "skipped": false,
                                "passed": true,
                                "index": 1,
                                "id": "091fe5c5-7757-4fcf-bb13-e076e2032263"
                            }
                        ]
                    }
                },
                {
                    "id": 348,
                    "event": "script",
                    "timestamp": "2021-09-08T13:02:23.793Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "scriptId": "b1cbdbb9-0678-4781-9ef8-4997618303df",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-9"
                        },
                        "event": {
                            "listen": "test",
                            "script": {
                                "id": "b1cbdbb9-0678-4781-9ef8-4997618303df-2",
                                "type": "text/javascript",
                                "_lastExecutionId": "103f22b8-3e2f-4a9f-a033-f741caaf89bd",
                                "_postman_propertyRequiresId": true
                            },
                            "id": "2a7f099f-4cfa-436d-bb03-0590e35e4000"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 349,
                    "event": "test",
                    "timestamp": "2021-09-08T13:02:23.794Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        },
                        "scriptResults": [
                            "a2406959-46b4-4c3c-a544-4f77d611bc22",
                            "4f6c0d3e-0ddd-4fed-bbb4-08c529a2c27b",
                            "6221cefb-9cc9-460d-b9f7-07dc19387e4c"
                        ]
                    }
                },
                {
                    "id": 350,
                    "event": "item",
                    "timestamp": "2021-09-08T13:02:23.796Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "httpRequestId": "fc58f07f-cb1d-4cc9-b9dd-aef88bc837eb",
                            "id": "af2fbebd-b28f-4c9b-a9b4-9bbc6fb62244-6"
                        },
                        "item": {
                            "id": "57cba4d4-85f3-4252-9d91-6faf69ce05ff",
                            "name": "service_activities_templates/{id}",
                            "_postman_propertyRequiresId": true,
                            "events": "d1673acb-d56c-4ae9-b67b-6807d50e067c",
                            "request": {
                                "method": "DELETE",
                                "url": "{{url}}/service-action-service/v1/service_activities_templates/{{id_sa_temp}}",
                                "headers": {},
                                "body": {
                                    "contentLength": 0
                                },
                                "id": "e2ccd687-2b4b-4802-9e31-4fe82ba020a5"
                            }
                        }
                    }
                },
                {
                    "id": 351,
                    "event": "iteration",
                    "timestamp": "2021-09-08T13:02:23.797Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "ref": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b",
                            "length": 15,
                            "cycles": 1,
                            "position": 14,
                            "iteration": 0,
                            "eof": true,
                            "id": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b-2"
                        }
                    }
                },
                {
                    "id": 352,
                    "event": "done",
                    "timestamp": "2021-09-08T13:02:23.799Z",
                    "job": "1ec10a4d-e96d-42b0-b318-b2a549bebb62",
                    "run": "1ec10a4d-e9e9-4ae0-a610-52f3a8377748",
                    "args": {
                        "cursor": {
                            "position": 14,
                            "iteration": 0,
                            "length": 15,
                            "cycles": 1,
                            "empty": false,
                            "eof": false,
                            "bof": false,
                            "cr": false,
                            "ref": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b",
                            "id": "03dd055f-2a6a-434a-ab15-bb6dc8dfc19b-3"
                        }
                    }
                }
            ]
        }
    ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment