Monitoring Relation Processing

Endpoint:

GET /v1/partner-user-provision/{provision_id}

Response - Relation Processing:

{
    "Response": [
        {
            "PartnerUserProvision": {
                "id": 123,
                "created": "2025-08-13 14:45:18.621550",
                "updated": "2025-08-13 14:45:20.123456",
                "external_uuid": "550e8400-e29b-41d4-a716-446655440000",
                "status": "CREATED",
                "sub_status": "PENDING_PROCESS_RELATION_USER",
                "action_required": "NONE",
                "products": ["USER_VERIFIED"],
                "label_user": {
                    "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
                    "display_name": "User Name",
                    "country": "NL",
                    "avatar": {
                        "uuid": "avatar-uuid",
                        "image": [...],
                        "anchor_uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
                        "style": "NONE"
                    },
                    "public_nick_name": "UserNick",
                    "type": "PERSON"
                },
                "oauth_request": null,
                "credential": null
            }
        }
    ]
}

Status Explanation:

  • Status: CREATED - Still in creation process

  • Sub Status: PENDING_PROCESS_RELATION_USER - Creating partner-user relationship

  • label_user: Contains user information - user account has been created

  • oauth_request: null - OAuth setup not yet started

The label_user field now contains the created user's information, including their UUID and display details.

Last updated

Was this helpful?