Skip to main content

GET /afps/{id}

Summary

Get AfP

URL Parameters

NameTypeRequiredDescription
idstringYesAfP id or nanoid

Query Parameters

  • None

Request Example

curl -X GET 'https://api.requidex.com/api/open/v1/afps/{id}' \
-H 'Authorization: Bearer <API_KEY>' \
-H 'Accept: application/json'

Response Fields

FieldTypeDescription
afpTypestringAfP flow type
agencyobject
Show child attributes
  • id string - Agency id
  • name string - Agency name
companyobject
Show child attributes
  • id string - Company id
  • name string - Company name
confirmedByobjectReturned when present.
Show child attributes
  • id string - User id
  • name string - User name
confirmedDatestringTimestamp when the AfP was marked confirmed/paid
createdAtstringCreation timestamp
duestringAfP due date in ISO 8601 date-time format
filesobjectFile URLs. Child attributes: afp, timesheetSnapshot
idstringAfP id
mspobjectReturned when present.
Show child attributes
  • id string - MSP id
  • name string - MSP name
mspInvoiceTypestringMSP AfP subtype when applicable
paymentobjectReturned when present.
Show child attributes
  • reference string - Payment reference
  • paymentDate string - Payment date in ISO 8601 date-time format
projectsarrayProject references with id and name
referencestringAfP reference
statusstringAfP status
timesheetsarrayLinked timesheets with id and reference
updatedAtstringLast update timestamp
valuesobject
Show child attributes
  • grossHours number
  • netHours number
  • subtotal number
  • vat number
  • total number
  • cis number
  • finalTotal number
  • expenses number
  • creditNotes number
  • netValue number
weekEndingstringWeek ending date in ISO 8601 date-time format

Response Example (200)

{
"success": true,
"data": {
"id": "67bc36db80a1616ec3f4b101",
"reference": "AFP-1044",
"status": "confirmed",
"company": {
"id": "67bc36db80a1616ec3f47001",
"name": "Requidex Construction Ltd"
},
"agency": {
"id": "67bc36db80a1616ec3f47101",
"name": "Northline Labour Desk"
},
"projects": [
{
"id": "67bc36db80a1616ec3f47011",
"name": "Northern Rail Electrification"
}
],
"afpType": "supplierToClient",
"mspInvoiceType": null,
"weekEnding": "2026-03-08T00:00:00.000Z",
"due": "2026-04-07T00:00:00.000Z",
"confirmedDate": "2026-03-25T12:00:00.000Z",
"confirmedBy": {
"id": "67bc36db80a1616ec3f47099",
"name": "Pat Taylor"
},
"payment": {
"reference": "PAY-2044",
"paymentDate": "2026-03-25T12:00:00.000Z"
},
"values": {
"grossHours": 40,
"netHours": 37.5,
"subtotal": 1125,
"vat": 225,
"total": 1350,
"cis": 0,
"finalTotal": 1350,
"expenses": 125,
"creditNotes": 0,
"netValue": 1475
},
"files": {
"afp": "https://files.requidex.com/invoices/AFP-1044.pdf",
"timesheetSnapshot": "https://files.requidex.com/invoices/AFP-1044-timesheets.pdf"
},
"timesheets": [
{
"id": "67bc36db80a1616ec3f4a001",
"reference": "TS-1044"
}
],
"createdAt": "2026-03-08T18:00:00.000Z",
"updatedAt": "2026-03-25T12:00:00.000Z"
}
}

Errors

HTTP StatusMeaning
401Missing, invalid, revoked, or expired API key
403Forbidden due to scope or IP restrictions
404AfP not found
405Method not allowed on Open API routes
429Rate limit exceeded
500Unexpected internal error