using Prove.Proveapi;
using Prove.Proveapi.Models.Components;
var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");
var res = await sdk.Identity.V3FetchRequestAsync(
proveId: "<id>",
attributeId: "<id>"
);
// handle response{
"results": [
{
"attributeId": "550e8400-e29b-41d4-a716-446655440000",
"issuerId": "Aeropay",
"attributeValue": "ext-wallet-992834"
},
{
"attributeId": "550e8400-e29b-41d4-a716-446655440000",
"issuerId": "Aeropay",
"attributeValue": "ext-wallet-992834"
}
]
}Fetch actual identity attribute values (e.g., walletID) based on the customer ProveID and attribute UUID.
using Prove.Proveapi;
using Prove.Proveapi.Models.Components;
var sdk = new ProveAPI(auth: "<YOUR_AUTH_HERE>");
var res = await sdk.Identity.V3FetchRequestAsync(
proveId: "<id>",
attributeId: "<id>"
);
// handle response{
"results": [
{
"attributeId": "550e8400-e29b-41d4-a716-446655440000",
"issuerId": "Aeropay",
"attributeValue": "ext-wallet-992834"
},
{
"attributeId": "550e8400-e29b-41d4-a716-446655440000",
"issuerId": "Aeropay",
"attributeValue": "ext-wallet-992834"
}
]
}The access token received from the /token endpoint. Refer to the Authentication page for more details.
A unique Prove-generated identifier for the enrolled identity (UUID).
A unique identifier for the identity attribute (UUID), as returned by the discover endpoint.
A client-generated unique ID for a specific session. This can be used to identify specific requests. The format of this ID is defined by the client - Prove recommends using a GUID, but any format can be accepted. Do not include Personally Identifiable Information (PII) in this field.
V3FetchResponse
Response body for the Fetch API GET method.
Array of identity attribute results containing attributeId, issuerId, and attributeValue.
Show child attributes
Was this page helpful?