delete
https://api.genability.com/rest/v1/accounts/pid/
Delete an account using your providerAccountId. The account record remains available for historical reference, and its status changes to DELETED.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Delete an account using your providerAccountId.
Use this endpoint when you identify accounts with your own IDs. To delete an account using the Arcadia-generated account identifier, use Delete Account with accountId.
Deleting an account does not remove the account record from the API. The account remains available for historical reference, but its status changes to DELETED.
Resource URI
DELETE /rest/v1/accounts/pid/{providerAccountId}Path parameters
| Parameter | Type | Description |
|---|---|---|
providerAccountId | string | Your unique identifier for the Account object. Required. |
For the full account data model, account workflow, and detailed examples, see Accounts API.
Example
DELETE /rest/v1/accounts/pid/api-eg-01A successful response returns a standard response payload indicating that the account status changed to DELETED.
{
"status": "success",
"count": 1,
"type": "Account",
"results": [
{
"providerAccountId": "api-eg-01",
"status": "DELETED"
}
]
}