@emilgroup/partner-portal-sdk-node 1.3.1-beta.0 → 1.3.1-beta.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api/intermediary-api.ts +32 -32
- package/dist/api/intermediary-api.d.ts +32 -32
- package/dist/api/intermediary-api.js +32 -32
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Although this package can be used in both TypeScript and JavaScript, it is inten
|
|
|
17
17
|
Navigate to the folder of your consuming project and run one of the following commands:
|
|
18
18
|
|
|
19
19
|
```
|
|
20
|
-
npm install @emilgroup/partner-portal-sdk-node@1.3.1-beta.
|
|
20
|
+
npm install @emilgroup/partner-portal-sdk-node@1.3.1-beta.16 --save
|
|
21
21
|
```
|
|
22
22
|
or
|
|
23
23
|
```
|
|
24
|
-
yarn add @emilgroup/partner-portal-sdk-node@1.3.1-beta.
|
|
24
|
+
yarn add @emilgroup/partner-portal-sdk-node@1.3.1-beta.16
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
And then you can import `IntermediaryApi`.
|
package/api/intermediary-api.ts
CHANGED
|
@@ -47,7 +47,7 @@ const FormData = require('form-data');
|
|
|
47
47
|
export const IntermediaryApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
48
48
|
return {
|
|
49
49
|
/**
|
|
50
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
50
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
51
51
|
* @summary Retrieve the lead
|
|
52
52
|
* @param {string} code Unique identifier for the object.
|
|
53
53
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -92,7 +92,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
92
92
|
};
|
|
93
93
|
},
|
|
94
94
|
/**
|
|
95
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
95
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
96
96
|
* @summary Retrieve the partner
|
|
97
97
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
98
98
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -137,7 +137,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
137
137
|
};
|
|
138
138
|
},
|
|
139
139
|
/**
|
|
140
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
140
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
141
141
|
* @summary Retrieve the policy
|
|
142
142
|
* @param {string} code Unique identifier for the object.
|
|
143
143
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -182,7 +182,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
182
182
|
};
|
|
183
183
|
},
|
|
184
184
|
/**
|
|
185
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
185
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
186
186
|
* @summary Retrieve the policyholder
|
|
187
187
|
* @param {string} code Unique identifier for the object.
|
|
188
188
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -227,7 +227,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
227
227
|
};
|
|
228
228
|
},
|
|
229
229
|
/**
|
|
230
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
230
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
231
231
|
* @summary List leads
|
|
232
232
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
233
233
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -303,7 +303,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
303
303
|
};
|
|
304
304
|
},
|
|
305
305
|
/**
|
|
306
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
306
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
307
307
|
* @summary List partners
|
|
308
308
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
309
309
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -379,7 +379,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
379
379
|
};
|
|
380
380
|
},
|
|
381
381
|
/**
|
|
382
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
382
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
383
383
|
* @summary List policies
|
|
384
384
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
385
385
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -455,7 +455,7 @@ export const IntermediaryApiAxiosParamCreator = function (configuration?: Config
|
|
|
455
455
|
};
|
|
456
456
|
},
|
|
457
457
|
/**
|
|
458
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
458
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
459
459
|
* @summary List policyholders
|
|
460
460
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
461
461
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -541,7 +541,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
541
541
|
const localVarAxiosParamCreator = IntermediaryApiAxiosParamCreator(configuration)
|
|
542
542
|
return {
|
|
543
543
|
/**
|
|
544
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
544
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
545
545
|
* @summary Retrieve the lead
|
|
546
546
|
* @param {string} code Unique identifier for the object.
|
|
547
547
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -553,7 +553,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
553
553
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
554
554
|
},
|
|
555
555
|
/**
|
|
556
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
556
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
557
557
|
* @summary Retrieve the partner
|
|
558
558
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
559
559
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -565,7 +565,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
565
565
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
566
566
|
},
|
|
567
567
|
/**
|
|
568
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
568
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
569
569
|
* @summary Retrieve the policy
|
|
570
570
|
* @param {string} code Unique identifier for the object.
|
|
571
571
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -577,7 +577,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
577
577
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
578
578
|
},
|
|
579
579
|
/**
|
|
580
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
580
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
581
581
|
* @summary Retrieve the policyholder
|
|
582
582
|
* @param {string} code Unique identifier for the object.
|
|
583
583
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -589,7 +589,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
589
589
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
590
590
|
},
|
|
591
591
|
/**
|
|
592
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
592
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
593
593
|
* @summary List leads
|
|
594
594
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
595
595
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -607,7 +607,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
607
607
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
608
608
|
},
|
|
609
609
|
/**
|
|
610
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
610
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
611
611
|
* @summary List partners
|
|
612
612
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
613
613
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -625,7 +625,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
625
625
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
626
626
|
},
|
|
627
627
|
/**
|
|
628
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
628
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
629
629
|
* @summary List policies
|
|
630
630
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
631
631
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -643,7 +643,7 @@ export const IntermediaryApiFp = function(configuration?: Configuration) {
|
|
|
643
643
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
644
644
|
},
|
|
645
645
|
/**
|
|
646
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
646
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
647
647
|
* @summary List policyholders
|
|
648
648
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
649
649
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -671,7 +671,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
671
671
|
const localVarFp = IntermediaryApiFp(configuration)
|
|
672
672
|
return {
|
|
673
673
|
/**
|
|
674
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
674
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
675
675
|
* @summary Retrieve the lead
|
|
676
676
|
* @param {string} code Unique identifier for the object.
|
|
677
677
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -682,7 +682,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
682
682
|
return localVarFp.getLead(code, authorization, options).then((request) => request(axios, basePath));
|
|
683
683
|
},
|
|
684
684
|
/**
|
|
685
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
685
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
686
686
|
* @summary Retrieve the partner
|
|
687
687
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
688
688
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -693,7 +693,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
693
693
|
return localVarFp.getPartner(code, authorization, options).then((request) => request(axios, basePath));
|
|
694
694
|
},
|
|
695
695
|
/**
|
|
696
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
696
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
697
697
|
* @summary Retrieve the policy
|
|
698
698
|
* @param {string} code Unique identifier for the object.
|
|
699
699
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -704,7 +704,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
704
704
|
return localVarFp.getPolicy(code, authorization, options).then((request) => request(axios, basePath));
|
|
705
705
|
},
|
|
706
706
|
/**
|
|
707
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
707
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
708
708
|
* @summary Retrieve the policyholder
|
|
709
709
|
* @param {string} code Unique identifier for the object.
|
|
710
710
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -715,7 +715,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
715
715
|
return localVarFp.getPolicyholder(code, authorization, options).then((request) => request(axios, basePath));
|
|
716
716
|
},
|
|
717
717
|
/**
|
|
718
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
718
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
719
719
|
* @summary List leads
|
|
720
720
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
721
721
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -732,7 +732,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
732
732
|
return localVarFp.listLeads(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
733
733
|
},
|
|
734
734
|
/**
|
|
735
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
735
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
736
736
|
* @summary List partners
|
|
737
737
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
738
738
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -749,7 +749,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
749
749
|
return localVarFp.listPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
750
750
|
},
|
|
751
751
|
/**
|
|
752
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
752
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
753
753
|
* @summary List policies
|
|
754
754
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
755
755
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -766,7 +766,7 @@ export const IntermediaryApiFactory = function (configuration?: Configuration, b
|
|
|
766
766
|
return localVarFp.listPolicies(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then((request) => request(axios, basePath));
|
|
767
767
|
},
|
|
768
768
|
/**
|
|
769
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
769
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
770
770
|
* @summary List policyholders
|
|
771
771
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
772
772
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -1129,7 +1129,7 @@ export interface IntermediaryApiListPolicyholdersRequest {
|
|
|
1129
1129
|
*/
|
|
1130
1130
|
export class IntermediaryApi extends BaseAPI {
|
|
1131
1131
|
/**
|
|
1132
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
1132
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
1133
1133
|
* @summary Retrieve the lead
|
|
1134
1134
|
* @param {IntermediaryApiGetLeadRequest} requestParameters Request parameters.
|
|
1135
1135
|
* @param {*} [options] Override http request option.
|
|
@@ -1141,7 +1141,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1141
1141
|
}
|
|
1142
1142
|
|
|
1143
1143
|
/**
|
|
1144
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
1144
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
1145
1145
|
* @summary Retrieve the partner
|
|
1146
1146
|
* @param {IntermediaryApiGetPartnerRequest} requestParameters Request parameters.
|
|
1147
1147
|
* @param {*} [options] Override http request option.
|
|
@@ -1153,7 +1153,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1153
1153
|
}
|
|
1154
1154
|
|
|
1155
1155
|
/**
|
|
1156
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
1156
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
1157
1157
|
* @summary Retrieve the policy
|
|
1158
1158
|
* @param {IntermediaryApiGetPolicyRequest} requestParameters Request parameters.
|
|
1159
1159
|
* @param {*} [options] Override http request option.
|
|
@@ -1165,7 +1165,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1165
1165
|
}
|
|
1166
1166
|
|
|
1167
1167
|
/**
|
|
1168
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
1168
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
1169
1169
|
* @summary Retrieve the policyholder
|
|
1170
1170
|
* @param {IntermediaryApiGetPolicyholderRequest} requestParameters Request parameters.
|
|
1171
1171
|
* @param {*} [options] Override http request option.
|
|
@@ -1177,7 +1177,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1177
1177
|
}
|
|
1178
1178
|
|
|
1179
1179
|
/**
|
|
1180
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
1180
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
1181
1181
|
* @summary List leads
|
|
1182
1182
|
* @param {IntermediaryApiListLeadsRequest} requestParameters Request parameters.
|
|
1183
1183
|
* @param {*} [options] Override http request option.
|
|
@@ -1189,7 +1189,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1189
1189
|
}
|
|
1190
1190
|
|
|
1191
1191
|
/**
|
|
1192
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
1192
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
1193
1193
|
* @summary List partners
|
|
1194
1194
|
* @param {IntermediaryApiListPartnersRequest} requestParameters Request parameters.
|
|
1195
1195
|
* @param {*} [options] Override http request option.
|
|
@@ -1201,7 +1201,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1201
1201
|
}
|
|
1202
1202
|
|
|
1203
1203
|
/**
|
|
1204
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
1204
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
1205
1205
|
* @summary List policies
|
|
1206
1206
|
* @param {IntermediaryApiListPoliciesRequest} requestParameters Request parameters.
|
|
1207
1207
|
* @param {*} [options] Override http request option.
|
|
@@ -1213,7 +1213,7 @@ export class IntermediaryApi extends BaseAPI {
|
|
|
1213
1213
|
}
|
|
1214
1214
|
|
|
1215
1215
|
/**
|
|
1216
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
1216
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
1217
1217
|
* @summary List policyholders
|
|
1218
1218
|
* @param {IntermediaryApiListPolicyholdersRequest} requestParameters Request parameters.
|
|
1219
1219
|
* @param {*} [options] Override http request option.
|
|
@@ -26,7 +26,7 @@ import { PolicyClass } from '../models';
|
|
|
26
26
|
*/
|
|
27
27
|
export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28
28
|
/**
|
|
29
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
29
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
30
30
|
* @summary Retrieve the lead
|
|
31
31
|
* @param {string} code Unique identifier for the object.
|
|
32
32
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -35,7 +35,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
35
35
|
*/
|
|
36
36
|
getLead: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
37
37
|
/**
|
|
38
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
38
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
39
39
|
* @summary Retrieve the partner
|
|
40
40
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
41
41
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -44,7 +44,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
44
44
|
*/
|
|
45
45
|
getPartner: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
46
46
|
/**
|
|
47
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
47
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
48
48
|
* @summary Retrieve the policy
|
|
49
49
|
* @param {string} code Unique identifier for the object.
|
|
50
50
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -53,7 +53,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
53
53
|
*/
|
|
54
54
|
getPolicy: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
55
55
|
/**
|
|
56
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
56
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
57
57
|
* @summary Retrieve the policyholder
|
|
58
58
|
* @param {string} code Unique identifier for the object.
|
|
59
59
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -62,7 +62,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
62
62
|
*/
|
|
63
63
|
getPolicyholder: (code: string, authorization?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
64
64
|
/**
|
|
65
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
65
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
66
66
|
* @summary List leads
|
|
67
67
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
68
68
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -77,7 +77,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
77
77
|
*/
|
|
78
78
|
listLeads: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
79
79
|
/**
|
|
80
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
80
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
81
81
|
* @summary List partners
|
|
82
82
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
83
83
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -92,7 +92,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
92
92
|
*/
|
|
93
93
|
listPartners: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
94
94
|
/**
|
|
95
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
95
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
96
96
|
* @summary List policies
|
|
97
97
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
98
98
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -107,7 +107,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
107
107
|
*/
|
|
108
108
|
listPolicies: (authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
109
109
|
/**
|
|
110
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
110
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
111
111
|
* @summary List policyholders
|
|
112
112
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
113
113
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -128,7 +128,7 @@ export declare const IntermediaryApiAxiosParamCreator: (configuration?: Configur
|
|
|
128
128
|
*/
|
|
129
129
|
export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
130
130
|
/**
|
|
131
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
131
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
132
132
|
* @summary Retrieve the lead
|
|
133
133
|
* @param {string} code Unique identifier for the object.
|
|
134
134
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -137,7 +137,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
137
137
|
*/
|
|
138
138
|
getLead(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<LeadClass>>;
|
|
139
139
|
/**
|
|
140
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
140
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
141
141
|
* @summary Retrieve the partner
|
|
142
142
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
143
143
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -146,7 +146,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
146
146
|
*/
|
|
147
147
|
getPartner(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerClass>>;
|
|
148
148
|
/**
|
|
149
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
149
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
150
150
|
* @summary Retrieve the policy
|
|
151
151
|
* @param {string} code Unique identifier for the object.
|
|
152
152
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -155,7 +155,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
155
155
|
*/
|
|
156
156
|
getPolicy(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PolicyClass>>;
|
|
157
157
|
/**
|
|
158
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
158
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
159
159
|
* @summary Retrieve the policyholder
|
|
160
160
|
* @param {string} code Unique identifier for the object.
|
|
161
161
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -164,7 +164,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
164
164
|
*/
|
|
165
165
|
getPolicyholder(code: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountClass>>;
|
|
166
166
|
/**
|
|
167
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
167
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
168
168
|
* @summary List leads
|
|
169
169
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
170
170
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -179,7 +179,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
179
179
|
*/
|
|
180
180
|
listLeads(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListLeadsResponseClass>>;
|
|
181
181
|
/**
|
|
182
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
182
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
183
183
|
* @summary List partners
|
|
184
184
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
185
185
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -194,7 +194,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
194
194
|
*/
|
|
195
195
|
listPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPartnersResponseClass>>;
|
|
196
196
|
/**
|
|
197
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
197
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
198
198
|
* @summary List policies
|
|
199
199
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
200
200
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -209,7 +209,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
209
209
|
*/
|
|
210
210
|
listPolicies(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPoliciesResponseClass>>;
|
|
211
211
|
/**
|
|
212
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
212
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
213
213
|
* @summary List policyholders
|
|
214
214
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
215
215
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -230,7 +230,7 @@ export declare const IntermediaryApiFp: (configuration?: Configuration) => {
|
|
|
230
230
|
*/
|
|
231
231
|
export declare const IntermediaryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
232
232
|
/**
|
|
233
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
233
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
234
234
|
* @summary Retrieve the lead
|
|
235
235
|
* @param {string} code Unique identifier for the object.
|
|
236
236
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -239,7 +239,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
239
239
|
*/
|
|
240
240
|
getLead(code: string, authorization?: string, options?: any): AxiosPromise<LeadClass>;
|
|
241
241
|
/**
|
|
242
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
242
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
243
243
|
* @summary Retrieve the partner
|
|
244
244
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
245
245
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -248,7 +248,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
248
248
|
*/
|
|
249
249
|
getPartner(code: string, authorization?: string, options?: any): AxiosPromise<PartnerClass>;
|
|
250
250
|
/**
|
|
251
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
251
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
252
252
|
* @summary Retrieve the policy
|
|
253
253
|
* @param {string} code Unique identifier for the object.
|
|
254
254
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -257,7 +257,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
257
257
|
*/
|
|
258
258
|
getPolicy(code: string, authorization?: string, options?: any): AxiosPromise<PolicyClass>;
|
|
259
259
|
/**
|
|
260
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
260
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
261
261
|
* @summary Retrieve the policyholder
|
|
262
262
|
* @param {string} code Unique identifier for the object.
|
|
263
263
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -266,7 +266,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
266
266
|
*/
|
|
267
267
|
getPolicyholder(code: string, authorization?: string, options?: any): AxiosPromise<AccountClass>;
|
|
268
268
|
/**
|
|
269
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
269
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
270
270
|
* @summary List leads
|
|
271
271
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
272
272
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -281,7 +281,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
281
281
|
*/
|
|
282
282
|
listLeads(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListLeadsResponseClass>;
|
|
283
283
|
/**
|
|
284
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
284
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
285
285
|
* @summary List partners
|
|
286
286
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
287
287
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -296,7 +296,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
296
296
|
*/
|
|
297
297
|
listPartners(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPartnersResponseClass>;
|
|
298
298
|
/**
|
|
299
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
299
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
300
300
|
* @summary List policies
|
|
301
301
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
302
302
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -311,7 +311,7 @@ export declare const IntermediaryApiFactory: (configuration?: Configuration, bas
|
|
|
311
311
|
*/
|
|
312
312
|
listPolicies(authorization?: string, pageSize?: number, pageToken?: string, filter?: string, search?: string, order?: string, expand?: string, filters?: string, options?: any): AxiosPromise<ListPoliciesResponseClass>;
|
|
313
313
|
/**
|
|
314
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
314
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
315
315
|
* @summary List policyholders
|
|
316
316
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
317
317
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -630,7 +630,7 @@ export interface IntermediaryApiListPolicyholdersRequest {
|
|
|
630
630
|
*/
|
|
631
631
|
export declare class IntermediaryApi extends BaseAPI {
|
|
632
632
|
/**
|
|
633
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
633
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
634
634
|
* @summary Retrieve the lead
|
|
635
635
|
* @param {IntermediaryApiGetLeadRequest} requestParameters Request parameters.
|
|
636
636
|
* @param {*} [options] Override http request option.
|
|
@@ -639,7 +639,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
639
639
|
*/
|
|
640
640
|
getLead(requestParameters: IntermediaryApiGetLeadRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<LeadClass, any, {}>>;
|
|
641
641
|
/**
|
|
642
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
642
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
643
643
|
* @summary Retrieve the partner
|
|
644
644
|
* @param {IntermediaryApiGetPartnerRequest} requestParameters Request parameters.
|
|
645
645
|
* @param {*} [options] Override http request option.
|
|
@@ -648,7 +648,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
648
648
|
*/
|
|
649
649
|
getPartner(requestParameters: IntermediaryApiGetPartnerRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerClass, any, {}>>;
|
|
650
650
|
/**
|
|
651
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
651
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
652
652
|
* @summary Retrieve the policy
|
|
653
653
|
* @param {IntermediaryApiGetPolicyRequest} requestParameters Request parameters.
|
|
654
654
|
* @param {*} [options] Override http request option.
|
|
@@ -657,7 +657,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
657
657
|
*/
|
|
658
658
|
getPolicy(requestParameters: IntermediaryApiGetPolicyRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PolicyClass, any, {}>>;
|
|
659
659
|
/**
|
|
660
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
660
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
661
661
|
* @summary Retrieve the policyholder
|
|
662
662
|
* @param {IntermediaryApiGetPolicyholderRequest} requestParameters Request parameters.
|
|
663
663
|
* @param {*} [options] Override http request option.
|
|
@@ -666,7 +666,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
666
666
|
*/
|
|
667
667
|
getPolicyholder(requestParameters: IntermediaryApiGetPolicyholderRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountClass, any, {}>>;
|
|
668
668
|
/**
|
|
669
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
669
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
670
670
|
* @summary List leads
|
|
671
671
|
* @param {IntermediaryApiListLeadsRequest} requestParameters Request parameters.
|
|
672
672
|
* @param {*} [options] Override http request option.
|
|
@@ -675,7 +675,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
675
675
|
*/
|
|
676
676
|
listLeads(requestParameters?: IntermediaryApiListLeadsRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListLeadsResponseClass, any, {}>>;
|
|
677
677
|
/**
|
|
678
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
678
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
679
679
|
* @summary List partners
|
|
680
680
|
* @param {IntermediaryApiListPartnersRequest} requestParameters Request parameters.
|
|
681
681
|
* @param {*} [options] Override http request option.
|
|
@@ -684,7 +684,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
684
684
|
*/
|
|
685
685
|
listPartners(requestParameters?: IntermediaryApiListPartnersRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPartnersResponseClass, any, {}>>;
|
|
686
686
|
/**
|
|
687
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
687
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
688
688
|
* @summary List policies
|
|
689
689
|
* @param {IntermediaryApiListPoliciesRequest} requestParameters Request parameters.
|
|
690
690
|
* @param {*} [options] Override http request option.
|
|
@@ -693,7 +693,7 @@ export declare class IntermediaryApi extends BaseAPI {
|
|
|
693
693
|
*/
|
|
694
694
|
listPolicies(requestParameters?: IntermediaryApiListPoliciesRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPoliciesResponseClass, any, {}>>;
|
|
695
695
|
/**
|
|
696
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
696
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
697
697
|
* @summary List policyholders
|
|
698
698
|
* @param {IntermediaryApiListPolicyholdersRequest} requestParameters Request parameters.
|
|
699
699
|
* @param {*} [options] Override http request option.
|
|
@@ -97,7 +97,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
97
97
|
var _this = this;
|
|
98
98
|
return {
|
|
99
99
|
/**
|
|
100
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
100
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
101
101
|
* @summary Retrieve the lead
|
|
102
102
|
* @param {string} code Unique identifier for the object.
|
|
103
103
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -145,7 +145,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
145
145
|
});
|
|
146
146
|
},
|
|
147
147
|
/**
|
|
148
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
148
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
149
149
|
* @summary Retrieve the partner
|
|
150
150
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
151
151
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -193,7 +193,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
193
193
|
});
|
|
194
194
|
},
|
|
195
195
|
/**
|
|
196
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
196
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
197
197
|
* @summary Retrieve the policy
|
|
198
198
|
* @param {string} code Unique identifier for the object.
|
|
199
199
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -241,7 +241,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
241
241
|
});
|
|
242
242
|
},
|
|
243
243
|
/**
|
|
244
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
244
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
245
245
|
* @summary Retrieve the policyholder
|
|
246
246
|
* @param {string} code Unique identifier for the object.
|
|
247
247
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -289,7 +289,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
289
289
|
});
|
|
290
290
|
},
|
|
291
291
|
/**
|
|
292
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
292
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
293
293
|
* @summary List leads
|
|
294
294
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
295
295
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -361,7 +361,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
361
361
|
});
|
|
362
362
|
},
|
|
363
363
|
/**
|
|
364
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
364
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
365
365
|
* @summary List partners
|
|
366
366
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
367
367
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -433,7 +433,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
433
433
|
});
|
|
434
434
|
},
|
|
435
435
|
/**
|
|
436
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
436
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
437
437
|
* @summary List policies
|
|
438
438
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
439
439
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -505,7 +505,7 @@ var IntermediaryApiAxiosParamCreator = function (configuration) {
|
|
|
505
505
|
});
|
|
506
506
|
},
|
|
507
507
|
/**
|
|
508
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
508
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
509
509
|
* @summary List policyholders
|
|
510
510
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
511
511
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -587,7 +587,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
587
587
|
var localVarAxiosParamCreator = (0, exports.IntermediaryApiAxiosParamCreator)(configuration);
|
|
588
588
|
return {
|
|
589
589
|
/**
|
|
590
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
590
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
591
591
|
* @summary Retrieve the lead
|
|
592
592
|
* @param {string} code Unique identifier for the object.
|
|
593
593
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -608,7 +608,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
608
608
|
});
|
|
609
609
|
},
|
|
610
610
|
/**
|
|
611
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
611
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
612
612
|
* @summary Retrieve the partner
|
|
613
613
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
614
614
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -629,7 +629,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
629
629
|
});
|
|
630
630
|
},
|
|
631
631
|
/**
|
|
632
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
632
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
633
633
|
* @summary Retrieve the policy
|
|
634
634
|
* @param {string} code Unique identifier for the object.
|
|
635
635
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -650,7 +650,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
650
650
|
});
|
|
651
651
|
},
|
|
652
652
|
/**
|
|
653
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
653
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
654
654
|
* @summary Retrieve the policyholder
|
|
655
655
|
* @param {string} code Unique identifier for the object.
|
|
656
656
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -671,7 +671,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
671
671
|
});
|
|
672
672
|
},
|
|
673
673
|
/**
|
|
674
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
674
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
675
675
|
* @summary List leads
|
|
676
676
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
677
677
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -698,7 +698,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
698
698
|
});
|
|
699
699
|
},
|
|
700
700
|
/**
|
|
701
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
701
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
702
702
|
* @summary List partners
|
|
703
703
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
704
704
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -725,7 +725,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
725
725
|
});
|
|
726
726
|
},
|
|
727
727
|
/**
|
|
728
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
728
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
729
729
|
* @summary List policies
|
|
730
730
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
731
731
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -752,7 +752,7 @@ var IntermediaryApiFp = function (configuration) {
|
|
|
752
752
|
});
|
|
753
753
|
},
|
|
754
754
|
/**
|
|
755
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
755
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
756
756
|
* @summary List policyholders
|
|
757
757
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
758
758
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -789,7 +789,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
789
789
|
var localVarFp = (0, exports.IntermediaryApiFp)(configuration);
|
|
790
790
|
return {
|
|
791
791
|
/**
|
|
792
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
792
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
793
793
|
* @summary Retrieve the lead
|
|
794
794
|
* @param {string} code Unique identifier for the object.
|
|
795
795
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -800,7 +800,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
800
800
|
return localVarFp.getLead(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
801
801
|
},
|
|
802
802
|
/**
|
|
803
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
803
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
804
804
|
* @summary Retrieve the partner
|
|
805
805
|
* @param {string} code The partner code or \"me\" for the currently logged in partner.
|
|
806
806
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -811,7 +811,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
811
811
|
return localVarFp.getPartner(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
812
812
|
},
|
|
813
813
|
/**
|
|
814
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
814
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
815
815
|
* @summary Retrieve the policy
|
|
816
816
|
* @param {string} code Unique identifier for the object.
|
|
817
817
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -822,7 +822,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
822
822
|
return localVarFp.getPolicy(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
823
823
|
},
|
|
824
824
|
/**
|
|
825
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
825
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
826
826
|
* @summary Retrieve the policyholder
|
|
827
827
|
* @param {string} code Unique identifier for the object.
|
|
828
828
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
@@ -833,7 +833,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
833
833
|
return localVarFp.getPolicyholder(code, authorization, options).then(function (request) { return request(axios, basePath); });
|
|
834
834
|
},
|
|
835
835
|
/**
|
|
836
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
836
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
837
837
|
* @summary List leads
|
|
838
838
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
839
839
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -850,7 +850,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
850
850
|
return localVarFp.listLeads(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
851
851
|
},
|
|
852
852
|
/**
|
|
853
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
853
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
854
854
|
* @summary List partners
|
|
855
855
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
856
856
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -867,7 +867,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
867
867
|
return localVarFp.listPartners(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
868
868
|
},
|
|
869
869
|
/**
|
|
870
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
870
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
871
871
|
* @summary List policies
|
|
872
872
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
873
873
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -884,7 +884,7 @@ var IntermediaryApiFactory = function (configuration, basePath, axios) {
|
|
|
884
884
|
return localVarFp.listPolicies(authorization, pageSize, pageToken, filter, search, order, expand, filters, options).then(function (request) { return request(axios, basePath); });
|
|
885
885
|
},
|
|
886
886
|
/**
|
|
887
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
887
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
888
888
|
* @summary List policyholders
|
|
889
889
|
* @param {string} [authorization] Bearer Token: provided by the login endpoint under the name accessToken.
|
|
890
890
|
* @param {number} [pageSize] A limit on the number of objects to be returned. Limit ranges between 1 and 50. Default: 10.
|
|
@@ -915,7 +915,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
915
915
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
916
916
|
}
|
|
917
917
|
/**
|
|
918
|
-
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information.
|
|
918
|
+
* Retrieves the details of a lead associated with the logged-in partner. Supply the unique lead code, and Emil API will return the corresponding lead information. **Required Permissions** none
|
|
919
919
|
* @summary Retrieve the lead
|
|
920
920
|
* @param {IntermediaryApiGetLeadRequest} requestParameters Request parameters.
|
|
921
921
|
* @param {*} [options] Override http request option.
|
|
@@ -927,7 +927,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
927
927
|
return (0, exports.IntermediaryApiFp)(this.configuration).getLead(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
928
928
|
};
|
|
929
929
|
/**
|
|
930
|
-
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information.
|
|
930
|
+
* Retrieves the details of a related partner or the logged-in partner if their code or \'me\' is provided. Supply the unique partner code, and Emil API will return the corresponding partner information. **Required Permissions** none
|
|
931
931
|
* @summary Retrieve the partner
|
|
932
932
|
* @param {IntermediaryApiGetPartnerRequest} requestParameters Request parameters.
|
|
933
933
|
* @param {*} [options] Override http request option.
|
|
@@ -939,7 +939,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
939
939
|
return (0, exports.IntermediaryApiFp)(this.configuration).getPartner(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
940
940
|
};
|
|
941
941
|
/**
|
|
942
|
-
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information.
|
|
942
|
+
* Retrieves the details of a policy associated with the logged-in partner. Supply the unique policy code, and Emil API will return the corresponding policy information. **Required Permissions** none
|
|
943
943
|
* @summary Retrieve the policy
|
|
944
944
|
* @param {IntermediaryApiGetPolicyRequest} requestParameters Request parameters.
|
|
945
945
|
* @param {*} [options] Override http request option.
|
|
@@ -951,7 +951,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
951
951
|
return (0, exports.IntermediaryApiFp)(this.configuration).getPolicy(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
952
952
|
};
|
|
953
953
|
/**
|
|
954
|
-
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information.
|
|
954
|
+
* Retrieves the details of a policyholder linked to the leads and policies the logged-in partner is associated with. Supply the unique policyholder code, and Emil API will return the corresponding policyholder information. **Required Permissions** none
|
|
955
955
|
* @summary Retrieve the policyholder
|
|
956
956
|
* @param {IntermediaryApiGetPolicyholderRequest} requestParameters Request parameters.
|
|
957
957
|
* @param {*} [options] Override http request option.
|
|
@@ -963,7 +963,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
963
963
|
return (0, exports.IntermediaryApiFp)(this.configuration).getPolicyholder(requestParameters.code, requestParameters.authorization, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
964
964
|
};
|
|
965
965
|
/**
|
|
966
|
-
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
966
|
+
* Returns a list of leads associated with the logged-in partner. The leads are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
967
967
|
* @summary List leads
|
|
968
968
|
* @param {IntermediaryApiListLeadsRequest} requestParameters Request parameters.
|
|
969
969
|
* @param {*} [options] Override http request option.
|
|
@@ -976,7 +976,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
976
976
|
return (0, exports.IntermediaryApiFp)(this.configuration).listLeads(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
977
977
|
};
|
|
978
978
|
/**
|
|
979
|
-
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
979
|
+
* Returns a list of partners related to the logged-in partner. The partners are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
980
980
|
* @summary List partners
|
|
981
981
|
* @param {IntermediaryApiListPartnersRequest} requestParameters Request parameters.
|
|
982
982
|
* @param {*} [options] Override http request option.
|
|
@@ -989,7 +989,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
989
989
|
return (0, exports.IntermediaryApiFp)(this.configuration).listPartners(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
990
990
|
};
|
|
991
991
|
/**
|
|
992
|
-
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
992
|
+
* Returns a list of policies associated with the logged-in partner. The policies are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
993
993
|
* @summary List policies
|
|
994
994
|
* @param {IntermediaryApiListPoliciesRequest} requestParameters Request parameters.
|
|
995
995
|
* @param {*} [options] Override http request option.
|
|
@@ -1002,7 +1002,7 @@ var IntermediaryApi = /** @class */ (function (_super) {
|
|
|
1002
1002
|
return (0, exports.IntermediaryApiFp)(this.configuration).listPolicies(requestParameters.authorization, requestParameters.pageSize, requestParameters.pageToken, requestParameters.filter, requestParameters.search, requestParameters.order, requestParameters.expand, requestParameters.filters, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
1003
1003
|
};
|
|
1004
1004
|
/**
|
|
1005
|
-
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation.
|
|
1005
|
+
* Returns a list of policyholders linked to the leads and policies the logged-in partner is associated with. The policyholders are returned in sorted order, with the oldest one appearing first. For more information about pagination, read the Pagination documentation. **Required Permissions** none
|
|
1006
1006
|
* @summary List policyholders
|
|
1007
1007
|
* @param {IntermediaryApiListPolicyholdersRequest} requestParameters Request parameters.
|
|
1008
1008
|
* @param {*} [options] Override http request option.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@emilgroup/partner-portal-sdk-node",
|
|
3
|
-
"version": "1.3.1-beta.
|
|
3
|
+
"version": "1.3.1-beta.16",
|
|
4
4
|
"description": "OpenAPI client for @emilgroup/partner-portal-sdk-node",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"prepare": "npm run build"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"axios": "
|
|
21
|
+
"axios": "1.12.0",
|
|
22
22
|
"form-data": "^4.0.0",
|
|
23
23
|
"url": "^0.11.0"
|
|
24
24
|
},
|