diff --git a/seeds/endpointType.js b/seeds/endpointType.js index 29ee3dcff..8c3d70a18 100644 --- a/seeds/endpointType.js +++ b/seeds/endpointType.js @@ -143,8 +143,60 @@ const endpointTypes = [ description: 'Bulk Quotes callback URL to which put bulkQuotes requests can be sent' }, { - name: 'THIRDPARTY_CALLBACK_URL_TRX_REQ_POST', - description: 'Participant callback URL where POST thirdpartyRequests/transactions can be sent' + name: 'TP_CB_URL_TRANSACTION_REQUEST_POST', + description: 'Participant callback URL where POST /thirdpartyRequests/transactions can be sent' + }, + { + name: 'TP_CB_URL_TRANSACTION_REQUEST_PUT', + description: 'Participant callback URL where PUT /thirdpartyRequests/transactions/{ID} can be sent' + }, + { + name: 'TP_CB_URL_TRANSACTION_REQUEST_PUT_ERROR', + description: 'Participant callback URL to which PUT /thirdpartyRequests/transactions/{ID}/error can be sent error information can be sent' + }, + { + name: 'TP_CB_URL_TRANSACTION_REQUEST_AUTH_POST', + description: 'Participant callback URL where POST /thirdpartyRequests/transactions/{ID}/authorizations can be sent' + }, + { + name: 'TP_CB_URL_TRANSACTION_REQUEST_AUTH_PUT', + description: 'Participant callback URL where PUT /thirdpartyRequests/transactions/{ID}/authorizations can be sent' + }, + { + name: 'TP_CB_URL_TRANSACTION_REQUEST_AUTH_PUT_ERROR', + description: 'Participant callback URL where PUT /thirdpartyRequests/transactions/{ID}/authorizations/error error information can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_REQUEST_POST', + description: 'Participant callback URL where POST /consentRequests can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_REQUEST_PUT', + description: 'Participant callback URL where PUT /consentRequests/{ID} can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_REQUEST_PUT_ERROR', + description: 'Participant callback URL where PUT /consentRequests/{ID}/error can be sent error information can be sent' + }, + { + name: 'TP_CB_URL_CREATE_CREDENTIAL_POST', + description: 'Participant callback URL where POST /consentRequests/{ID}/createCredential can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_POST', + description: 'Participant callback URL where POST /consents/ can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_GET', + description: 'Participant callback URL where GET /consent/{ID} can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_PUT', + description: 'Participant callback URL where PUT /consent/{ID} can be sent' + }, + { + name: 'TP_CB_URL_CONSENT_PUT_ERROR', + description: 'Participant callback URL where PUT consent/{ID}/error can be sent error information can be sent' } ]