Unless explicitly stated on the documentation for a method, the accepted Web API call content types are:
Calls using any other content type (ex: text/plain) are not supported.
-
APIs
-
Integrations
Contents
Summary
Contains methods for working with integrations.
API Methods
DELETE
https://help.ohio.edu/TDWebApi/api/integrations/{integrationId}/exclude/asset/{assetId}
Copy URL
Removes an exclusion from an integration.
Parameters
-
-
Parameter Name
-
integrationId
-
Type
-
Int32
-
Source
-
URI
-
Description
-
The integration identifier.
-
-
Parameter Name
-
assetId
-
Type
-
Int32
-
Source
-
URI
-
Description
-
The asset identifier.
Returns
A response indicating the successful removal of an exclusion.
(Task<IHttpActionResult>)
POST
https://help.ohio.edu/TDWebApi/api/integrations/{integrationId}/exclude/asset/{assetId}
Copy URL
Create an exclusion for syncing an asset with an integration.
Parameters
-
-
Parameter Name
-
integrationId
-
Type
-
Int32
-
Source
-
URI
-
Description
-
The integer identifier of the integration.
-
-
Parameter Name
-
assetId
-
Type
-
Int32
-
Source
-
URI
-
Description
-
The integer identifier of the asset.
Returns
The created exclusion record.
(Task<IHttpActionResult>)
Remarks
The integration and asset must be pre-existing and for the same application.
POST
https://help.ohio.edu/TDWebApi/api/integrations/{integrationId}/exclude/assets
Copy URL
Create an exclusion for syncing assets with an integration.
Parameters
-
-
Parameter Name
-
integrationId
-
Type
-
Int32
-
Source
-
URI
-
Description
-
The integer identifier of the integration.
-
-
Parameter Name
-
Request Body
(Validated as "assetIds")
-
Type
-
Int32[]
-
Source
-
Request Body
-
Description
-
The integer identifiers of the assets.
Returns
The created exclusion record.
(Task<IHttpActionResult>)
Remarks
The integration and asset must be pre-existing and for the same application.
GET
https://help.ohio.edu/TDWebApi/api/integrations/{integrationId}/exclusions
Copy URL
Gets the exclusions for an integration.
Parameters
-
-
Parameter Name
-
integrationId
-
Type
-
Int32
-
Source
-
URI
-
Description
-
The integer identifier of the integration.
Returns
The existing eclusion records for the integration.
(Task<IHttpActionResult>)