Get Fulfillment Statuses
Description
This endpoint provides a list of fulfillment statuses.
The id
returned from this endpoint can be used to populate the fulfillmentStatus
field in the request body of the /deliverables/{deliverableId}
endpoint.
Responses
[
{
"id": "Complete",
"name": "Complete"
}
]
Example
Authentication
This API requires an API key for authentication. The API key should be included in the header of the request as Authorization: Bearer {API_KEY}
.
Request
curl --location '{BASE_URL}/cv/deliverable/fulfillment-statuses' \
--header 'Authorization: Bearer {API_KEY}'
09 July 2024