# List onboard individual entity jobs Lists onboard individual entity jobs for a specific entity. Endpoint: GET /v1alpha/entities/{entity}/onboardIndividualEntityJobs Version: v1alpha Security: oauth2_client_credentials, oauth2_authorization_code ## Path parameters: - `entity` (string, required) The entity id. ## Query parameters: - `pageSize` (integer) Optional. The maximum number of jobs to return. The service may return fewer than this value. If unspecified, at most 10 jobs will be returned. The maximum value is 100; values above 100 will be coerced to 100. - `pageToken` (string) Optional. A page token, received from a previous ListOnboardIndividualEntityJobs call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to ListOnboardIndividualEntityJobs must match the call that provided the page token. - `skip` (integer) Optional. The number of jobs to skip before starting to collect the result set. ## Response 200 fields (application/json): - `onboardIndividualEntityJobs` (array) The list of onboard individual entity jobs. - `onboardIndividualEntityJobs.name` (string) (IDENTIFIER) Output only. The resource name of the job. Format: entities/-/onboardIndividualEntityJobs/{onboard_individual_entity_job} correct_name_format // name must follow format 'entities/-/onboardIndividualEntityJobs/*' string.example = ["entities/-/onboardIndividualEntityJobs/mfs-onboard-job-2024-0127-kycind-743891"] - `onboardIndividualEntityJobs.formDefinition` (string, required) Required. The resource name of the form definition to use for data collection. Format: formDefinitions/{form_definition} correct_form_definition_format // form_definition must start with 'formDefinitions/' string.example = ["formDefinitions/mfs-individual-kyc-form-v2.1"] - `onboardIndividualEntityJobs.jsonataExpression` (string, required) Required. JSONata expression to transform form response into IndividualEntity. This must be base64-encoded when sent in JSON requests. - `onboardIndividualEntityJobs.webhookUri` (string, required) Required. Webhook target URI for notifications. string.example = ["https://api.example.com/webhooks/onboarding/individual/entity-job-status"] string.uri = true // value must be a valid URI string.uri_empty = true // value is empty, which is not a valid URI - `onboardIndividualEntityJobs.createTime` (string) Output only. The timestamp when the job was created. - `onboardIndividualEntityJobs.updateTime` (string) Output only. The timestamp when the job was most recently updated. - `nextPageToken` (string) A token to retrieve the next page of results, or empty if there are no more results in the list. string.example = ["ChAIAhABGAEiAggD"] - `totalSize` (integer) The total number of jobs matching the request. int32.example = [47]