The paychecks endpoint provides detailed information about paychecks. You can retrieve individual paycheck details, including the person and job associated with the paycheck, its status, pay period, expected deposit date, total debited amount, withholdings, earnings, and currency.
Functionality: Retrieve specific paycheck details, including payee and job information, and monitor the status and financial details of each paycheck.
Returns details about a paycheck object.
DailyPay-API-Version | integer Default: 3 The version of the DailyPay API to use for this request. If not provided, the latest version of the API will be used. |
Accept | string Default: application/vnd.api+json The media type of the requested payload. This should be set to |
Returns the paycheck object.
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Resource was not found
Unexpected error occured
curl -i -X GET \ 'https://api.dailypay.com/rest/paychecks/{paycheck_id}' \ -H 'Accept: application/vnd.api+json' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'DailyPay-API-Version: 3'
{- "data": {
- "type": "paychecks",
- "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
- "attributes": {
- "status": "ESTIMATED",
- "pay_period_ends_at": "2023-03-15T04:00:00Z",
- "pay_period_starts_at": "2023-03-15T04:00:00Z",
- "deposit_expected_at": "2023-03-15T04:00:00Z",
- "total_debited": 0,
- "gross_earnings": 0,
- "employer_withholdings": 0,
- "net_earnings": 0,
- "currency": "USD"
}, - "relationships": {
- "person": {
- "data": {
- "type": "people",
- "id": "3fa8f641-5717-4562-b3fc-2c963f66afa6"
}
}, - "job": {
- "data": {
- "type": "jobs",
- "id": "e9d84b0d-92ba-43c9-93bf-7c993313fa6f"
}
}
}
}
}
Returns a collection of paycheck objects. This object details a person's pay and pay period. See Filtering Paychecks for a description of filterable fields.
filter[job.id] | string Limit the results to documents related to a specific job |
filter[status] | string Limit the results to paychecks with the specified status |
filter[deposit_expected_at__gte] | string <date-time> Limit the results to paychecks with deposit_expected_at greater than or equal to the specified date Example: filter[deposit_expected_at__gte]=2023-03-15T04:00:00Z |
filter[deposit_expected_at__lt] | string <date-time> Limit the results to paychecks with deposit_expected_at less than the specified date Example: filter[deposit_expected_at__lt]=2023-03-15T04:00:00Z |
filter[pay_period_ends_at__gte] | string <date-time> Limit the results to paychecks with pay_period_ends_at greater than or equal to the specified date Example: filter[pay_period_ends_at__gte]=2023-03-15T04:00:00Z |
filter[pay_period_ends_at__lt] | string <date-time> Limit the results to paychecks with pay_period_ends_at less than the specified date Example: filter[pay_period_ends_at__lt]=2023-03-15T04:00:00Z |
filter[pay_period_starts_at__gte] | string <date-time> Limit the results to paychecks with pay_period_starts_at greater than or equal to the specified date Example: filter[pay_period_starts_at__gte]=2023-03-15T04:00:00Z |
filter[pay_period_starts_at__lt] | string <date-time> Limit the results to paychecks with pay_period_starts_at less than the specified date Example: filter[pay_period_starts_at__lt]=2023-03-15T04:00:00Z |
filter | string Deprecated Examples: filter=job_id:"aa860051-c411-4709-9685-c1b716df611b" filter=status:"DEPOSITED" |
DailyPay-API-Version | integer Default: 3 The version of the DailyPay API to use for this request. If not provided, the latest version of the API will be used. |
Accept | string Default: application/vnd.api+json The media type of the requested payload. This should be set to |
Returns the paycheck object.
Bad Request
Invalid authentication credentials
Not authorized to perform this operation
Unexpected error occured
curl -i -X GET \ 'https://api.dailypay.com/rest/paychecks?filter%5Bjob.id%5D=string&filter%5Bstatus%5D=ESTIMATED&filter%5Bdeposit_expected_at__gte%5D=2023-03-15T04%3A00%3A00Z&filter%5Bdeposit_expected_at__lt%5D=2023-03-15T04%3A00%3A00Z&filter%5Bpay_period_ends_at__gte%5D=2023-03-15T04%3A00%3A00Z&filter%5Bpay_period_ends_at__lt%5D=2023-03-15T04%3A00%3A00Z&filter%5Bpay_period_starts_at__gte%5D=2023-03-15T04%3A00%3A00Z&filter%5Bpay_period_starts_at__lt%5D=2023-03-15T04%3A00%3A00Z&filter=string' \ -H 'Accept: application/vnd.api+json' \ -H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \ -H 'DailyPay-API-Version: 3'
{- "data": [
- {
- "type": "paychecks",
- "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
- "attributes": {
- "status": "ESTIMATED",
- "pay_period_ends_at": "2023-03-15T04:00:00Z",
- "pay_period_starts_at": "2023-03-15T04:00:00Z",
- "deposit_expected_at": "2023-03-15T04:00:00Z",
- "total_debited": 0,
- "gross_earnings": 0,
- "employer_withholdings": 0,
- "net_earnings": 0,
- "currency": "USD"
}, - "relationships": {
- "person": {
- "data": {
- "type": "people",
- "id": "3fa8f641-5717-4562-b3fc-2c963f66afa6"
}
}, - "job": {
- "data": {
- "type": "jobs",
- "id": "e9d84b0d-92ba-43c9-93bf-7c993313fa6f"
}
}
}
}
]
}