/v3/accounts/{id} and /beta/accounts/{id} return null for sourceName

When using get-account | SailPoint Developer Community or get-account | SailPoint Developer Community to get the details of a single account, the sourceName is always null. If you use the accounts list endpoint for beta or v3, then sourceName is present.

GET /v3/accounts is the list endpoint, and it correctly returns the sourceName:

[
    {
        "authoritative": false,
        "systemAccount": false,
        "uncorrelated": true,
        "features": "DIRECT_PERMISSIONS, NO_RANDOM_ACCESS, DISCOVER_SCHEMA",
        "uuid": null,
        "nativeIdentity": "1004096",
        "description": null,
        "disabled": false,
        "locked": false,
        "manuallyCorrelated": false,
        "hasEntitlements": true,
        "sourceId": "f4e73766efdf4dc6acdeed179606d694",
        "sourceName": "Large Source",
        "identityId": "0003c25c365e492381d4e557b6159f9b",
        "attributes": {
            "familyName": "Lewis",
            "givenName": "Leonard",
            "name": "Brian Mendoza",
            "e-mail": "[email protected]",
            "groups": [
                "Operations"
            ],
            "id": "1004096",
            "idNowDescription": "54c9b7bf9f4568abf1bcfb7fac3984e1ccc2ff91f0248808f183ed035dc73da5"
        },
        "id": "98da47c31df444558c211f9b205184f6",
        "name": "Brian Mendoza",
        "created": "2023-01-03T21:16:22.432Z",
        "modified": "2023-01-03T21:19:13.317Z"
    },

GET /v3/accounts/98da47c31df444558c211f9b205184f6 gets the same source as shown above, but the sourceName is null:

{
    "authoritative": false,
    "systemAccount": false,
    "uncorrelated": true,
    "features": "DIRECT_PERMISSIONS, NO_RANDOM_ACCESS, DISCOVER_SCHEMA",
    "uuid": null,
    "nativeIdentity": "1004096",
    "description": null,
    "disabled": false,
    "locked": false,
    "manuallyCorrelated": false,
    "hasEntitlements": true,
    "sourceId": "f4e73766efdf4dc6acdeed179606d694",
    "sourceName": null,
    "identityId": "0003c25c365e492381d4e557b6159f9b",
    "attributes": {
        "familyName": "Lewis",
        "givenName": "Leonard",
        "name": "Brian Mendoza",
        "e-mail": "[email protected]",
        "groups": [
            "Operations"
        ],
        "id": "1004096",
        "idNowDescription": "54c9b7bf9f4568abf1bcfb7fac3984e1ccc2ff91f0248808f183ed035dc73da5"
    },
    "id": "98da47c31df444558c211f9b205184f6",
    "name": "Brian Mendoza",
    "created": "2023-01-03T21:16:22.432Z",
    "modified": "2023-01-03T21:19:13.317Z"
}

The internal ticket is attached below, and the status is updated upon each refresh of this page.

1 Like

This has been resolved.