v1

latestOpenAPI 3.0.22026-07-13111437.5 KB
cost

Gets all FAR Part 51 Authorizations

Returns an array of FAR Part 51 Authorizations known to the vendor, so that the ATAT client can track them. This information must be provided in this way (sourced by the vendor rather than the ATAT client) because FAR Part 51 Authorizations are not processed through the ATAT UI in the same fashion as Portfolios, Task Orders and Environments. Must return an array of FAR Part 51 Authorizations, subject to the limit and offset pagination parameters as well as the start_date and end_date query parameters, sorted by created_at.

get/far51

Query parameters

start_datestring date required
Example:2023-12

Start date of the request in YYYY-MM format (inclusive). Earliest allowed value is 2023-01.

end_datestring date required
Example:2026-12

End date of the request in YYYY-MM format (inclusive).

limitinteger

Maximum number of results to be returned for a given request

offsetinteger

Offset for use when returning the n-th page of results (0-indexed)

Response

FAR Part 51 Authorizations successfully retrieved

idstring

Unique identifier for this FAR Part 51 Authorization. Used for retrieval of cost data.

created_atstring date

Date this FAR Part 51 Authorization was created by the vendor's ATAT implementation in YYYY-MM-DD format.

contract_numberstring

Contract Number under which this FAR Part 51 Authorization was granted

delivery_order_numberstring

Delivery Order Number under which this FAR Part 51 Authorization was granted

pop_start_datestring date

Start of period of performance for this FAR Part 51 Authorization in YYYY-MM-DD format.

pop_end_datestring date

End of period of performance for this FAR Part 51 Authorization in YYYY-MM-DD format.

customer_departmentstring

Abbreviation for Agency or Department associated with this FAR Part 51 Authorization, e.g. AF, Army, DLA, DOJ

Example response

[
  {
    "id": "csp-far-51-id-123",
    "created_at": "2021-03-28",
    "contract_number": "N0006217D0001",
    "delivery_order_number": "N0006217F0001",
    "pop_start_date": "2021-07-15",
    "pop_end_date": "2026-07-14",
    "customer_department": "DOJ",
    "authorizing_contract_officer": {
      "name": "Jane Contractor",
      "telephone": "555-123-4567",
      "email": "jane@agency.gov"
    }
  }
]