{
  "info": {
    "_postman_id": "50df999f-be0d-44c7-aabc-50a8180d2bf1",
    "name": "ComplianceSuite",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
    "_exporter_id": "31084034"
  },
  "item": [
    {
      "name": "API",
      "item": [
        {
          "name": "Authentication",
          "item": [
            {
              "name": "Create Token",
              "event": [
                {
                  "listen": "test",
                  "script": {
                    "exec": [
                      "pm.environment.set('access_token', pm.response.json().access_token)\r",
                      "pm.environment.set('refresh_token', pm.response.json().refresh_token)\r",
                      "pm.environment.set('client_id', pm.response.json().client_id)\r",
                      "pm.environment.set('client_secret', pm.response.json().client_secret)"
                    ],
                    "type": "text/javascript",
                    "packages": {},
                    "requests": {}
                  }
                }
              ],
              "request": {
                "auth": {
                  "type": "basic",
                  "basic": [
                    {
                      "key": "password",
                      "value": "{{password}}",
                      "type": "string"
                    },
                    {
                      "key": "username",
                      "value": "{{username}}",
                      "type": "string"
                    },
                    {
                      "key": "",
                      "value": "",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [
                  {
                    "key": "Authorization",
                    "value": "Basic {Base64 encoding of username:}",
                    "type": "text",
                    "disabled": true
                  }
                ],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/token/{{project_code}}",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "token",
                    "{{project_code}}"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Refresh Token",
              "request": {
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"refresh_token\": \"{{refresh_token}}\",\r\n    \"client_id\": \"{{client_id}}\",\r\n    \"client_secret\": \"{{client_secret}}\"\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/refresh/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "refresh",
                    ""
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Data",
          "item": [
            {
              "name": "Update Customer",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"customerid\": \"13\",\r\n    \"customer_name\": \"John Doe\",\r\n    \"customer_country\": \"GR\",\r\n    \"customer_birthdate\": \"1980-01-01\",\r\n    \"customer_status\": \"Active\",\r\n    \"customer_type\": \"Corporate\",\r\n    \"customer_dateregistered\": \"2010-01-01 10:10:59\",\r\n    \"attributes\": [\r\n        {\r\n            \"code\": \"customer_city\",\r\n            \"value\": \"Athens\"\r\n        },\r\n        {\r\n            \"code\": \"customer_zipcode\",\r\n            \"value\": \"4567\"\r\n        },\r\n        {\r\n            \"code\": \"customer_needrisk\",\r\n            \"value\": 1\r\n        },\r\n        {\r\n            \"code\": \"customer_needscreening\",\r\n            \"value\": 1\r\n        },\r\n        {\r\n            \"code\": \"customer_email\",\r\n            \"value\": \"fsdfsfs@com.cy\"\r\n        },\r\n        {\r\n            \"code\": \"customer_unique_internal\",\r\n            \"value\": \"1122233\"\r\n        },\r\n        {\r\n            \"code\": \"customer_dateactivated\",\r\n            \"value\": \"2026-01-01 23:00:00\"\r\n        }\r\n    ]\r\n}\r\n\r\n\r\n\r\n\r\n\r\n",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/update",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "update"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Update Customer (include Risk)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"customerid\": \"13\",\r\n    \"customer_name\": \"John Doe\",\r\n    \"customer_country\": \"GR\",\r\n    \"customer_birthdate\": \"1980-01-01\",\r\n    \"customer_status\": \"Pending\",\r\n    \"customer_type\": \"Corporate\",\r\n    \"customer_dateregistered\": \"2010-01-01 10:10:59\",\r\n    \"attributes\": [\r\n        {\r\n            \"code\": \"customer_city\",\r\n            \"value\": \"Athens\"\r\n        },\r\n        {\r\n            \"code\": \"customer_zipcode\",\r\n            \"value\": \"4567\"\r\n        },\r\n        {\r\n            \"code\": \"customer_needrisk\",\r\n            \"value\": 1\r\n        },\r\n        {\r\n            \"code\": \"customer_needscreening\",\r\n            \"value\": 1\r\n        },\r\n        {\r\n            \"code\": \"customer_lastname\",\r\n            \"value\": \"Vassilis\"\r\n        }\r\n    ],\r\n    \"officials\": [\r\n        {\r\n            \"officialid\": \"111\",\r\n            \"official_name\": \"John Cameron\",\r\n            \"official_category\": \"Director\",\r\n            \"official_birthdate\": \"1980-01-01\",\r\n            \"official_nationality\": \"GR\",\r\n            \"official_type\": \"Individual\",\r\n            \"attributes\": [\r\n                {\r\n                    \"code\": \"official_role\",\r\n                    \"value\": \"CEO\"\r\n                },\r\n                {\r\n                    \"code\": \"official_Address\",\r\n                    \"value\": \"Athens\"\r\n                },\r\n                {\r\n                    \"code\": \"official_email\",\r\n                    \"value\": \"vdontas@yahoo.gr\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_number\",\r\n                    \"value\": \"AB112233\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_type\",\r\n                    \"value\": \"Passport\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_issuing_country\",\r\n                    \"value\": \"GR\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_expiration_date\",\r\n                    \"value\": \"2025-01-01\"\r\n                }\r\n            ],\r\n            \"files\": [\r\n                {\r\n                    \"code\": \"poi\",\r\n                    \"category\": \"Proof of Identity\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                },\r\n                {\r\n                    \"code\": \"poa\",\r\n                    \"category\": \"Proof of Address\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                }                \r\n            ]\r\n        },\r\n        {\r\n            \"officialid\": \"111\",\r\n            \"official_name\": \"John Cameron\",\r\n            \"official_category\": \"Shareholder\",\r\n            \"official_birthdate\": \"1980-01-01\",\r\n            \"official_nationality\": \"GR\",\r\n            \"official_type\": \"Individual\",\r\n            \"attributes\": [\r\n                {\r\n                    \"code\": \"official_role\",\r\n                    \"value\": \"Manager\"\r\n                },\r\n                {\r\n                    \"code\": \"official_Address\",\r\n                    \"value\": \"Athens\"\r\n                },\r\n                {\r\n                    \"code\": \"official_email\",\r\n                    \"value\": \"vdontas@yahoo.gr\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_number\",\r\n                    \"value\": \"AB112233\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_type\",\r\n                    \"value\": \"Passport\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_issuing_country\",\r\n                    \"value\": \"GR\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_expiration_date\",\r\n                    \"value\": \"2025-01-01\"\r\n                },\r\n                {\r\n                    \"code\": \"official_ownership\",\r\n                    \"value\": \"50\"\r\n                },\r\n                {\r\n                    \"code\": \"official_authorized_individuals_positions\",\r\n                    \"value\": \"50\"\r\n                }\r\n            ],\r\n            \"files\": [\r\n                {\r\n                    \"code\": \"poi\",\r\n                    \"category\": \"Proof of Identity\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                },\r\n                {\r\n                    \"code\": \"poa\",\r\n                    \"category\": \"Proof of Address\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                }                \r\n            ]\r\n        }        \r\n    ],\r\n    \"files\": [\r\n        {\r\n            \"code\": \"oc\",\r\n            \"category\": \"Organisational Chart\",\r\n            \"format\": \"jpeg\",\r\n            \"binary\": \"\"\r\n        },\r\n        {\r\n            \"code\": \"coi\",\r\n            \"category\": \"Certificate of Incorporation\",\r\n            \"format\": \"jpeg\",\r\n            \"binary\": \"\"\r\n        },\r\n        {\r\n            \"code\": \"maaa\",\r\n            \"category\": \"Memorandum and Articles of Association\",\r\n            \"format\": \"jpeg\",\r\n            \"binary\": \"\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/update",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "update"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Update Customer (include Screening)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"customerid\": \"13\",\r\n    \"customer_name\": \"John Doe\",\r\n    \"customer_country\": \"GR\",\r\n    \"customer_birthdate\": \"1980-01-01\",\r\n    \"customer_status\": \"Pending\",\r\n    \"customer_type\": \"Individual\",\r\n    \"customer_dateregistered\": \"2010-01-01 10:10:59\",\r\n    \"attributes\": [\r\n        {\r\n            \"code\": \"customer_city\",\r\n            \"value\": \"Athens\"\r\n        },\r\n        {\r\n            \"code\": \"customer_zipcode\",\r\n            \"value\": \"4567\"\r\n        },\r\n        {\r\n            \"code\": \"customer_needrisk\",\r\n            \"value\": 0\r\n        },\r\n        {\r\n            \"code\": \"customer_needscreening\",\r\n            \"value\": 1\r\n        }        \r\n    ],\r\n    \"officials\": [\r\n        {\r\n            \"officialid\": \"111\",\r\n            \"official_name\": \"John Cameron\",\r\n            \"official_category\": \"Director\",\r\n            \"official_birthdate\": \"1980-01-01\",\r\n            \"official_nationality\": \"GR\",\r\n            \"official_type\": \"Individual\",\r\n            \"attributes\": [\r\n                {\r\n                    \"code\": \"official_role\",\r\n                    \"value\": \"CEO\"\r\n                },\r\n                {\r\n                    \"code\": \"official_Address\",\r\n                    \"value\": \"Athens\"\r\n                },\r\n                {\r\n                    \"code\": \"official_email\",\r\n                    \"value\": \"vdontas@yahoo.gr\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_number\",\r\n                    \"value\": \"AB112233\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_type\",\r\n                    \"value\": \"Passport\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_issuing_country\",\r\n                    \"value\": \"GR\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_expiration_date\",\r\n                    \"value\": \"2025-01-01\"\r\n                }\r\n            ],\r\n            \"files\": [\r\n                {\r\n                    \"code\": \"poi\",\r\n                    \"category\": \"Proof of Identity\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                },\r\n                {\r\n                    \"code\": \"poa\",\r\n                    \"category\": \"Proof of Address\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                }                \r\n            ]\r\n        },\r\n        {\r\n            \"officialid\": \"111\",\r\n            \"official_name\": \"John Cameron\",\r\n            \"official_category\": \"Shareholder\",\r\n            \"official_birthdate\": \"1980-01-01\",\r\n            \"official_nationality\": \"GR\",\r\n            \"official_type\": \"Individual\",\r\n            \"attributes\": [\r\n                {\r\n                    \"code\": \"official_role\",\r\n                    \"value\": \"Manager\"\r\n                },\r\n                {\r\n                    \"code\": \"official_Address\",\r\n                    \"value\": \"Athens\"\r\n                },\r\n                {\r\n                    \"code\": \"official_email\",\r\n                    \"value\": \"vdontas@yahoo.gr\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_number\",\r\n                    \"value\": \"AB112233\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_type\",\r\n                    \"value\": \"Passport\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_issuing_country\",\r\n                    \"value\": \"GR\"\r\n                },\r\n                {\r\n                    \"code\": \"official_document_expiration_date\",\r\n                    \"value\": \"2025-01-01\"\r\n                },\r\n                {\r\n                    \"code\": \"official_ownership\",\r\n                    \"value\": \"50\"\r\n                },\r\n                {\r\n                    \"code\": \"official_authorized_individuals_positions\",\r\n                    \"value\": \"50\"\r\n                }\r\n            ],\r\n            \"files\": [\r\n                {\r\n                    \"code\": \"poi\",\r\n                    \"category\": \"Proof of Identity\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                },\r\n                {\r\n                    \"code\": \"poa\",\r\n                    \"category\": \"Proof of Address\",\r\n                    \"format\": \"jpeg\",\r\n                    \"binary\": \"\"\r\n                }                \r\n            ]\r\n        }        \r\n    ],\r\n    \"files\": [\r\n        {\r\n            \"code\": \"oc\",\r\n            \"category\": \"Organisational Chart\",\r\n            \"format\": \"jpeg\",\r\n            \"binary\": \"\"\r\n        },\r\n        {\r\n            \"code\": \"coi\",\r\n            \"category\": \"Certificate of Incorporation\",\r\n            \"format\": \"jpeg\",\r\n            \"binary\": \"\"\r\n        },\r\n        {\r\n            \"code\": \"maaa\",\r\n            \"category\": \"Memorandum and Articles of Association\",\r\n            \"format\": \"jpeg\",\r\n            \"binary\": \"\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/update",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "update"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Update Account",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"accountid\": \"55\",\r\n    \"customerid\": \"13\",\r\n    \"account_title\": \"Savings Account\",\r\n    \"account_status\": \"Pending\",\r\n    \"account_type\": \"Individual\",\r\n    \"account_currency\": \"EUR\",\r\n    \"attributes\": [ \r\n        {\r\n            \"code\": \"Attribute1\",\r\n            \"value\": \"ABC\"\r\n        },\r\n        {\r\n            \"code\": \"Attribute2\",\r\n            \"value\": \"MT\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/account/update",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "account",
                    "update"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Add Transaction",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"transactionid\": \"7\",\r\n    \"requestID\": \"16\",\r\n    \"customerid\": \"0\",\r\n    \"accountid\": \"0\",\r\n    \"transaction_type\": \"IncomingAttempt\",\r\n    \"transaction_amount\": \"62667.16\",\r\n    \"transaction_currency\": \"EUR\",\r\n    \"timestamp\": \"2024-12-18 10:10\",\r\n    \"screening\": true,\r\n    \"blocking\": true,\r\n    \"risk\": true,\r\n    \"entries\": [\r\n        {\r\n            \"key\": \"transaction_status\",\r\n            \"value\": \"Completed\"\r\n        },\r\n        {\r\n            \"key\": \"counterparty_account\",\r\n            \"value\": \"7\"\r\n        },\r\n        {\r\n            \"key\": \"transaction_dateexecuted\",\r\n            \"value\": \"18/12/2024 10:10\"\r\n        },\r\n        {\r\n            \"key\": \"customer_unique_internal\",\r\n            \"value\": \"1122233\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/add",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "add"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Add Transaction (with Real-Time Monitoring)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "POST",
                "header": [],
                "body": {
                  "mode": "raw",
                  "raw": "{\r\n    \"transactionid\": \"7\",\r\n    \"requestID\": \"16\",\r\n    \"customerid\": \"2\",\r\n    \"accountid\": \"2\",\r\n    \"transaction_type\": \"OutgoingAttempt\",\r\n    \"transaction_amount\": \"62667.16\",\r\n    \"transaction_currency\": \"EUR\",\r\n    \"timestamp\": \"2024-12-18 10:10\",\r\n    \"screening\": false,\r\n    \"blocking\": true,\r\n    \"risk\": false,\r\n    \"entries\": [\r\n        {\r\n            \"key\": \"transaction_status\",\r\n            \"value\": \"Completed\"\r\n        },\r\n        {\r\n            \"key\": \"counterparty_account\",\r\n            \"value\": \"7\"\r\n        },\r\n        {\r\n            \"key\": \"transaction_dateexecuted\",\r\n            \"value\": \"18/12/2024 10:10\"\r\n        }\r\n    ]\r\n}",
                  "options": {
                    "raw": {
                      "language": "json"
                    }
                  }
                },
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/add",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "add"
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Information",
          "item": [
            {
              "name": "Get Account (by ID)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api.compliancesuite.ai/cs/1.0/api/account/id/",
                  "protocol": "https",
                  "host": [
                    "api",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "account",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Account (by Code)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/account/code/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "account",
                    "code",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Account (by Remote)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/account/remote/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "account",
                    "remote",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Account (by Customer)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/account/status/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "account",
                    "status",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Account (by Date)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/account/date/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "account",
                    "date",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Customer (by ID)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/id/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Customer (by Code)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/code/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "code",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Customer (by Remote)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/remote/13",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "remote",
                    "13"
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Customer (by Date)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/customer/date/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "customer",
                    "date",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Transaction (by ID)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/id/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Transaction (by Code)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/code/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "code",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Transaction (by Remote)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/remote/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "remote",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Transaction (by Customer)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/customer/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "customer",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Transaction (by Date)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/transaction/date/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "transaction",
                    "date",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Screening (by ID)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/screening/id/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "screening",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Screening (by Code)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/screening/code/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "screening",
                    "code",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Screening (by Customer)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/screening/customer/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "screening",
                    "customer",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Screening (by Date)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/screening/customer/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "screening",
                    "customer",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Verification (by ID)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/verification/id/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "verification",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Verification (by Session)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/verification/session/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "verification",
                    "session",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Verification (by Customer)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/verification/customer/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "verification",
                    "customer",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Verification (by Date)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/verification/date/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "verification",
                    "date",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Risk (by ID)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/risk/id/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "risk",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Risk (by Customer)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/risk/customer/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "risk",
                    "customer",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Risk (by Remote)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/risk/customer/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "risk",
                    "customer",
                    ""
                  ]
                }
              },
              "response": []
            },
            {
              "name": "Get Risk (by Date)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/risk/date/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "risk",
                    "date",
                    ""
                  ]
                }
              },
              "response": []
            }
          ]
        },
        {
          "name": "Structure",
          "item": [
            {
              "name": "Get Form (by Code)",
              "request": {
                "auth": {
                  "type": "bearer",
                  "bearer": [
                    {
                      "key": "token",
                      "value": "{{access_token}}",
                      "type": "string"
                    }
                  ]
                },
                "method": "GET",
                "header": [],
                "url": {
                  "raw": "https://api-staging.compliancesuite.ai/cs/1.0/api/form/id/",
                  "protocol": "https",
                  "host": [
                    "api-staging",
                    "compliancesuite",
                    "ai"
                  ],
                  "path": [
                    "cs",
                    "1.0",
                    "api",
                    "form",
                    "id",
                    ""
                  ]
                }
              },
              "response": []
            }
          ]
        }
      ]
    }
  ]
}