Integration Provider

Update User Integration Provider Connection

PUT

Allows you to update the auth status of the provider specific user connection.

An IntegrationProvider is the name of an external application or service that can be connected to ProjectManager.com. The Integrations API is intended for use by ProjectManager and its business development partners. Please contact ProjectManager’s sales team to request use of this API.

Path parameters

providerIdstringRequired
The identifier to the provider

Request

This endpoint expects an object.
connected
booleanOptional
Set to true if the connection was successful. False is not supported right now.

Response

This endpoint returns an object
error
objectOptional
If the API call failed, this will contain information about the error that occurred.
success
booleanOptional
True if the API call succeeded; false otherwise.
hasError
booleanOptional
True if the API call failed.
statusCode
enumOptional
The HTTP code of the response.
PUT
$curl -X PUT /api/data/integrations/providers/providerId/user-connection \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{}'
Response
1{
2 "error": {
3 "technicalError": "technicalError",
4 "additionalErrors": [
5 "additionalErrors"
6 ],
7 "message": "message"
8 },
9 "success": true,
10 "hasError": true,
11 "statusCode": "Continue"
12}