You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*AttachmentsApi* | [**getAttachment**](doc//AttachmentsApi.md#getattachment) | **GET** /api/v1/attachments/fetch | Exchange an Attachment Access Key (from `IdentityData.Attachments`) for the raw contents of the linked resource. Use this API to fetch document (front, back, portrait) or other (selfie) images from a verification, if relevant.
68
+
*NetworkApi* | [**identityLookup**](doc//NetworkApi.md#identitylookup) | **GET** /api/v1/network/identities/{phoneNumber} | Query the availability of an identity in the Trinsic Network by phone number
69
+
*NetworkApi* | [**listProviders**](doc//NetworkApi.md#listproviders) | **GET** /api/v1/network/providers | List all identity providers available for use
70
+
*SessionsApi* | [**cancelSession**](doc//SessionsApi.md#cancelsession) | **POST** /api/v1/sessions/{sessionId}/cancel | Cancel a Session by its ID
71
+
*SessionsApi* | [**createSession**](doc//SessionsApi.md#createsession) | **POST** /api/v1/sessions | Create a Session to verify a user's identity
72
+
*SessionsApi* | [**exchangeResultsKey**](doc//SessionsApi.md#exchangeresultskey) | **POST** /api/v1/sessions/{sessionId}/results | Exchange a Results Access Key for Identity Data
73
+
*SessionsApi* | [**getSession**](doc//SessionsApi.md#getsession) | **GET** /api/v1/sessions/{sessionId} | Get a Session by its ID
74
+
*SessionsApi* | [**listSessions**](doc//SessionsApi.md#listsessions) | **GET** /api/v1/sessions | List Sessions created by your account
75
+
*SessionsApi* | [**redactSession**](doc//SessionsApi.md#redactsession) | **POST** /api/v1/sessions/{sessionId}/redact | Redact a Session, removing all identity data from Trinsic's servers. Identity data that a user has chosen to save in their passkey-protected wallet will not be deleted.
Copy file name to clipboardExpand all lines: connect/dart/doc/Address.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
15
15
**state** | **String** | | [optional]
16
16
**postalCode** | **String** | | [optional]
17
17
**country** | **String** | | [optional]
18
-
**fullAddress** | **String** | | [optional]
18
+
**fullAddress** | **String** | The full address as a single string | [optional]
19
19
20
20
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**selfie** | **String** | Key to access the selfie image (if relevant) for this verification | [optional]
12
+
**documentFront** | **String** | Key to access the document front image (if relevant) for this verification | [optional]
13
+
**documentBack** | **String** | Key to access the document back image (if relevant) for this verification | [optional]
14
+
**documentPortrait** | **String** | Key to access the document portrait image (if relevant and available) for this verification. Specifically, this is a cropped version of the document front image which includes only the portrait on the document. | [optional]
15
+
16
+
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
All URIs are relative to *https://connect.trinsic.id*
9
+
10
+
Method | HTTP request | Description
11
+
------------- | ------------- | -------------
12
+
[**getAttachment**](AttachmentsApi.md#getattachment) | **GET** /api/v1/attachments/fetch | Exchange an Attachment Access Key (from `IdentityData.Attachments`) for the raw contents of the linked resource. Use this API to fetch document (front, back, portrait) or other (selfie) images from a verification, if relevant.
13
+
14
+
15
+
# **getAttachment**
16
+
> getAttachment(attachmentAccessKey)
17
+
18
+
Exchange an Attachment Access Key (from `IdentityData.Attachments`) for the raw contents of the linked resource. Use this API to fetch document (front, back, portrait) or other (selfie) images from a verification, if relevant.
19
+
20
+
### Example
21
+
```dart
22
+
import 'package:TrinsicConnect/api.dart';
23
+
// TODO Configure HTTP Bearer authorization: Bearer
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
**direct** | **bool** | Whether to create this Session in Direct mode. Direct mode is used to execute a verification against a specific identity provider. Users will not be shown the Connect Widget; therefore, reuse of Connect credentials, selection of an identity provider, and saving a verification for future reuse are not available to the end user in direct mode. Sessions created in direct mode must be created with a `RedirectUrl` specified, and cannot be invoked using the frontend SDK at this time. | [optional]
12
+
**redirectUrl** | **String** | The URL to redirect to after the user has completed the identity verification process. If `Direct` is set to `true`, this field is required. | [optional]
13
+
**providers** | **List<String>** | The list of allowed identity providers. If not specified, all available providers will be allowed. If `Direct` is `true`, this field must be set, and must have only a single entry. If `Direct` is not specified or is `false`, this field may have any number of entries. | [optional][default to const []]
14
+
**disclosedFields** | [**DisclosedFieldsRequest**](DisclosedFieldsRequest.md) | Specific identity attributes to request. If not provided, all available attributes will be requested. | [optional]
12
15
13
16
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
**session** | [**Session**](Session.md) | The created Acceptance Session |
12
+
**launchUrl** | **String** | The URL that should be used to invoke the Acceptance Session on your user's device. If the Session was created in `direct` mode, you should redirect your user's browser to this URL. The frontend SDK cannot presently be used to invoke direct mode Sessions. If the Session was not created in `direct` mode, you should pass this URL to your user's frontend and use the frontend SDK to invoke the Session. This URL is sensitive and as such can only be obtained once. If you need to obtain it again, you will need to create a new Acceptance Session. | [optional]
12
13
13
14
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: connect/dart/doc/DisclosedFields.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,10 @@ Name | Type | Description | Notes
16
16
**country** | **bool** | |
17
17
**issueDate** | **bool** | |
18
18
**expirationDate** | **bool** | |
19
+
**documentFront** | **bool** | |
20
+
**documentBack** | **bool** | |
21
+
**documentPortrait** | **bool** | |
22
+
**selfie** | **bool** | |
19
23
20
24
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: connect/dart/doc/DisclosedFieldsRequest.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,10 @@ Name | Type | Description | Notes
16
16
**country** | **bool** | | [optional]
17
17
**issueDate** | **bool** | | [optional]
18
18
**expirationDate** | **bool** | | [optional]
19
+
**documentFront** | **bool** | | [optional]
20
+
**documentBack** | **bool** | | [optional]
21
+
**documentPortrait** | **bool** | | [optional]
22
+
**selfie** | **bool** | | [optional]
19
23
20
24
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: connect/dart/doc/DocumentData.md
-1Lines changed: 0 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,6 @@ Name | Type | Description | Notes
13
13
**issueDate** | **String** | | [optional]
14
14
**expirationDate** | **String** | | [optional]
15
15
**issuingCountry** | **String** | | [optional]
16
-
**portrait** | **String** | | [optional]
17
16
18
17
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
0 commit comments