SharingAgreements
Represents sharing agreements with other Zendesk accounts.
Table-Specific Information
Select
The following query is processed server-side while other filters are processed client-side within the provider.SELECT * FROM SharingAgreements WHERE Id = '123'
Insert
The RemoteSubdomain column is required to insert. This operation is allowed for logged-in users with the "agent" role.
INSERT INTO SharingAgreements (RemoteSubdomain) VALUES ('Foo')
Update
You must specify the Id of the sharing agreement to update it. Only Status is allowed to be updated. This operation is allowed for logged-in users with the "agent" role.
UPDATE SharingAgreements SET Status = 'accepted' WHERE Id = '123'
Delete
You must specify the Id of the sharing agreement to delete it. This operation is allowed for logged-in users with the "agent" role.
DELETE FROM SharingAgreements WHERE Id = '123'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | Long | True |
The Id of the sharing agreement, automatically assigned upon creation. | |
| Name | String | False |
The name of the sharing agreement. | |
| Type | String | False |
The type of the sharing agreement. Possible values: inbound, outbound. | |
| Status | String | False |
The status of the sharing agreement. Possible values: accepted, declined, pending, inactive. | |
| PartnerName | String | False |
The name of the partner associated with the sharing agreement. Possible values: jira, null. | |
| RemoteSubdomain | String | False |
The subdomain of the remote account, or null if the agreement is not associated with an account. | |
| CreatedAt | Datetime | True |
The time the record was created. |