Applicant Groups

List all applicant groups

get
/api/v1/applicant_groups

Retrieves a paginated list of all applicant groups. Supports filtering by status, correlation ID, creation date range, and search query.

Authorizations
AuthorizationstringRequired

JWT token obtained from the /api/v1/tenants/auth endpoint. Token expires after 30 minutes and must be refreshed.

Example: Authorization: Bearer eyJhbGciOiJIUzI1NiJ9...

Query parameters
searchstringOptional

Search query to filter applicant groups

Example: Jane Doe
statusesstringOptional

Comma-separated list of statuses to filter by

Example: not_started,in_progress,completed
correlation_idstringOptional

Filter by external correlation identifier

Example: PROP-123-UNIT-456
created_afterinteger · intOptional

Filter applicant groups created after this Unix timestamp

Example: 1761966000
created_beforeinteger · intOptional

Filter applicant groups created before this Unix timestamp

Example: 1764557999
pageinteger · min: 1Optional

Page number for pagination

Example: 1
Responses
200

List of applicant groups retrieved successfully

application/json
get
/api/v1/applicant_groups

Create a new applicant group

post
/api/v1/applicant_groups

Creates a new applicant group to send applicants their corresponding verifications. When an applicant group is created successfully, an email and/or text is sent to all applicants inviting them to complete their verifications unless the invitation is disabled.

Authorizations
AuthorizationstringRequired

JWT token obtained from the /api/v1/tenants/auth endpoint. Token expires after 30 minutes and must be refreshed.

Example: Authorization: Bearer eyJhbGciOiJIUzI1NiJ9...

Body
decision_maker_display_namestringRequired

Display name for the decision maker

Example: ABC Property Management
monthly_rentnumber · integerRequired

Monthly rent amount in cents

Example: 250000
webhook_urlstringOptional

The URL that will receive webhook notifications for the applicant group created.

Example: https://www.yourwebsite.com/webhook
is_invitation_disabledbooleanOptional

If you decide to not want Payscore to invite the applicant via email and/or text, pass in true for this field. If you are utilizing our embedded widget, you will want to pass in true to this field.

correlation_idstringOptional

External system correlation identifier

Example: PROP-123-UNIT-456
Responses
200

Applicant group created successfully

application/json
post
/api/v1/applicant_groups

Last updated