...
Code Block |
---|
table.uuid('id').primary(); table.uuid('formVersionId').references('id').inTable('form_version').notNullable().index(); table.string('name'); table.string('description'); table.string('subscribeEvent'); table.string('endPointUrl').notNullable(); table.string('endPointToken').notNullable(); |
Code Block |
---|
id | formVersionId | name | description | subscribeEvent | endPointUrl | endPointToken | createdBy | createdAt | updatedBy | updatedAt
--------------------------------------+--------------------------------------+-----------------+---------------------------------------+-----------------+-----------------------------------+---------------+-------------------+-------------------------------+-----------+-------------------------------
05b52fd1-4c50-4b79-9099-a2cf87b34a8a | cbb49343-52be-4353-9db9-948a9b4a7d95 | form_submission | Subscription event on form submission | form_submission | https://reqbin.com/echo/post/json | AbCdEf123456 | 999-dev-seed-data | 2023-06-21 11:02:12.621903-07 | | 2023-06-21 11:02:12.621903-07 |
STRA - Thoughts:
I assume that STRA has been done on the API endpoints already
...