Interface ExternalEventConfigurationApi
public interface ExternalEventConfigurationApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<GetExternalEventConfigurationsResponse>List all external event configurationsretrofit2.Call<GetExternalEventConfigurationsResponse>retrieveExternalEventConfiguration(Map<String, String> headers) List all external event configurationsretrofit2.Call<CommandProcessingResult>updateExternalEventConfigurationsDetails(PutExternalEventConfigurationsRequest putExternalEventConfigurationsRequest) Enable/Disable external events postingretrofit2.Call<CommandProcessingResult>updateExternalEventConfigurationsDetails(PutExternalEventConfigurationsRequest putExternalEventConfigurationsRequest, Map<String, String> headers) Enable/Disable external events posting
-
Method Details
-
retrieveExternalEventConfiguration
@GET("v1/externalevents/configuration") retrofit2.Call<GetExternalEventConfigurationsResponse> retrieveExternalEventConfiguration()List all external event configurations- Returns:
- Call<GetExternalEventConfigurationsResponse>
-
updateExternalEventConfigurationsDetails
@Headers("Content-Type:application/json") @PUT("v1/externalevents/configuration") retrofit2.Call<CommandProcessingResult> updateExternalEventConfigurationsDetails(@Body PutExternalEventConfigurationsRequest putExternalEventConfigurationsRequest) Enable/Disable external events posting- Parameters:
putExternalEventConfigurationsRequest- (required)- Returns:
- Call<CommandProcessingResult>
-
retrieveExternalEventConfiguration
@GET("v1/externalevents/configuration") retrofit2.Call<GetExternalEventConfigurationsResponse> retrieveExternalEventConfiguration(@HeaderMap Map<String, String> headers) List all external event configurations- Returns:
- Call<GetExternalEventConfigurationsResponse>
-
updateExternalEventConfigurationsDetails
@Headers("Content-Type:application/json") @PUT("v1/externalevents/configuration") retrofit2.Call<CommandProcessingResult> updateExternalEventConfigurationsDetails(@Body PutExternalEventConfigurationsRequest putExternalEventConfigurationsRequest, @HeaderMap Map<String, String> headers) Enable/Disable external events posting- Parameters:
putExternalEventConfigurationsRequest- (required)- Returns:
- Call<CommandProcessingResult>
-