11# PublicApi
2- FastComments PHP API Client - A SDK for interacting with the FastComments API
2+ FastComments API Client - A SDK for interacting with the FastComments API
33
44All URIs are relative to * http://localhost *
55
@@ -247,7 +247,7 @@ No authorization required
247247
248248<a id =" createFeedPostPublic " ></a >
249249# ** createFeedPostPublic**
250- > CreateFeedPostPublic200Response createFeedPostPublic(tenantId, createFeedPostParams).broadcastId(broadcastId).execute();
250+ > CreateFeedPostPublic200Response createFeedPostPublic(tenantId, createFeedPostParams).broadcastId(broadcastId).sso(sso). execute();
251251
252252
253253
@@ -269,9 +269,11 @@ public class Example {
269269 String tenantId = " tenantId_example" ; // String |
270270 CreateFeedPostParams createFeedPostParams = new CreateFeedPostParams (); // CreateFeedPostParams |
271271 String broadcastId = " broadcastId_example" ; // String |
272+ String sso = " sso_example" ; // String |
272273 try {
273274 CreateFeedPostPublic200Response result = apiInstance. createFeedPostPublic(tenantId, createFeedPostParams)
274275 .broadcastId(broadcastId)
276+ .sso(sso)
275277 .execute();
276278 System . out. println(result);
277279 } catch (ApiException e) {
@@ -292,6 +294,7 @@ public class Example {
292294| ** tenantId** | ** String** | | |
293295| ** createFeedPostParams** | [ ** CreateFeedPostParams** ] ( CreateFeedPostParams.md ) | | |
294296| ** broadcastId** | ** String** | | [ optional] |
297+ | ** sso** | ** String** | | [ optional] |
295298
296299### Return type
297300
@@ -872,7 +875,7 @@ No authorization required
872875
873876<a id =" getFeedPostsPublic " ></a >
874877# ** getFeedPostsPublic**
875- > GetFeedPostsPublic200Response getFeedPostsPublic(tenantId).afterId(afterId).limit(limit).tags(tags).execute();
878+ > GetFeedPostsPublic200Response getFeedPostsPublic(tenantId).afterId(afterId).limit(limit).tags(tags).sso(sso). execute();
876879
877880
878881
@@ -897,11 +900,13 @@ public class Example {
897900 String afterId = " afterId_example" ; // String |
898901 Integer limit = 56 ; // Integer |
899902 List<String > tags = Arrays . asList(); // List<String> |
903+ String sso = " sso_example" ; // String |
900904 try {
901905 GetFeedPostsPublic200Response result = apiInstance. getFeedPostsPublic(tenantId)
902906 .afterId(afterId)
903907 .limit(limit)
904908 .tags(tags)
909+ .sso(sso)
905910 .execute();
906911 System . out. println(result);
907912 } catch (ApiException e) {
@@ -923,6 +928,7 @@ public class Example {
923928| ** afterId** | ** String** | | [ optional] |
924929| ** limit** | ** Integer** | | [ optional] |
925930| ** tags** | [ ** List< ; String> ; ** ] ( String.md ) | | [ optional] |
931+ | ** sso** | ** String** | | [ optional] |
926932
927933### Return type
928934
@@ -1233,7 +1239,7 @@ No authorization required
12331239
12341240<a id =" getUserReactsPublic " ></a >
12351241# ** getUserReactsPublic**
1236- > GetUserReactsPublic200Response getUserReactsPublic(tenantId).postIds(postIds).execute();
1242+ > GetUserReactsPublic200Response getUserReactsPublic(tenantId).postIds(postIds).sso(sso). execute();
12371243
12381244
12391245
@@ -1254,9 +1260,11 @@ public class Example {
12541260 PublicApi apiInstance = new PublicApi (defaultClient);
12551261 String tenantId = " tenantId_example" ; // String |
12561262 List<String > postIds = Arrays . asList(); // List<String> |
1263+ String sso = " sso_example" ; // String |
12571264 try {
12581265 GetUserReactsPublic200Response result = apiInstance. getUserReactsPublic(tenantId)
12591266 .postIds(postIds)
1267+ .sso(sso)
12601268 .execute();
12611269 System . out. println(result);
12621270 } catch (ApiException e) {
@@ -1276,6 +1284,7 @@ public class Example {
12761284| ------------- | ------------- | ------------- | -------------|
12771285| ** tenantId** | ** String** | | |
12781286| ** postIds** | [ ** List< ; String> ; ** ] ( String.md ) | | [ optional] |
1287+ | ** sso** | ** String** | | [ optional] |
12791288
12801289### Return type
12811290
@@ -1433,7 +1442,7 @@ No authorization required
14331442
14341443<a id =" reactFeedPostPublic " ></a >
14351444# ** reactFeedPostPublic**
1436- > ReactFeedPostPublic200Response reactFeedPostPublic(tenantId, postId, reactBodyParams).isUndo(isUndo).broadcastId(broadcastId).execute();
1445+ > ReactFeedPostPublic200Response reactFeedPostPublic(tenantId, postId, reactBodyParams).isUndo(isUndo).broadcastId(broadcastId).sso(sso). execute();
14371446
14381447
14391448
@@ -1457,10 +1466,12 @@ public class Example {
14571466 ReactBodyParams reactBodyParams = new ReactBodyParams (); // ReactBodyParams |
14581467 Boolean isUndo = true ; // Boolean |
14591468 String broadcastId = " broadcastId_example" ; // String |
1469+ String sso = " sso_example" ; // String |
14601470 try {
14611471 ReactFeedPostPublic200Response result = apiInstance. reactFeedPostPublic(tenantId, postId, reactBodyParams)
14621472 .isUndo(isUndo)
14631473 .broadcastId(broadcastId)
1474+ .sso(sso)
14641475 .execute();
14651476 System . out. println(result);
14661477 } catch (ApiException e) {
@@ -1483,6 +1494,7 @@ public class Example {
14831494| ** reactBodyParams** | [ ** ReactBodyParams** ] ( ReactBodyParams.md ) | | |
14841495| ** isUndo** | ** Boolean** | | [ optional] |
14851496| ** broadcastId** | ** String** | | [ optional] |
1497+ | ** sso** | ** String** | | [ optional] |
14861498
14871499### Return type
14881500
0 commit comments