The Supplier Scorecard Standing object
Attributes
Unique identifier for the object.
ISO 8601 timestamp of when the object was created.
ISO 8601 timestamp of when the object was last updated.
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
{
"id": "supplier-scorecard-standing_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"standing_name": "standing_name_example",
"standing_color": "standing_color_example",
"min_grade": 0,
"max_grade": 0,
"warn_rfqs": false,
"warn_pos": false,
"prevent_rfqs": false,
"prevent_pos": false,
"notify_supplier": false,
"notify_employee": false,
"employee_link": "employee_link_example"
} /api/buying/supplier-scorecard-standing/{id} Retrieve a supplier scorecard standing
Retrieves the details of an existing supplier scorecard standing. Supply the unique supplier scorecard standing ID that was returned from a previous request.
Path parameters
The identifier of the supplier scorecard standing to retrieve.
Returns
Returns the supplier scorecard standing object if a valid identifier was provided.
curl https://api.overplane.dev/api/buying/supplier-scorecard-standing/supplier-scorecard-standing_abc123 \
-H "Authorization: Bearer sk_test_..." {
"id": "supplier-scorecard-standing_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"standing_name": "standing_name_example",
"standing_color": "standing_color_example",
"min_grade": 0,
"max_grade": 0,
"warn_rfqs": false,
"warn_pos": false,
"prevent_rfqs": false,
"prevent_pos": false,
"notify_supplier": false,
"notify_employee": false,
"employee_link": "employee_link_example"
} /api/buying/supplier-scorecard-standing List all supplier scorecard standings
Returns a list of supplier scorecard standings. The results are sorted by creation date, with the most recently created appearing first.
Query parameters
Maximum number of objects to return. Default: 20.
Number of objects to skip for pagination. Default: 0.
Returns
A paginated list of supplier scorecard standing objects.
curl https://api.overplane.dev/api/buying/supplier-scorecard-standing \
-H "Authorization: Bearer sk_test_..." {
"data": [
{
"id": "supplier-scorecard-standing_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"standing_name": "standing_name_example",
"standing_color": "standing_color_example",
"min_grade": 0,
"max_grade": 0,
"warn_rfqs": false,
"warn_pos": false,
"prevent_rfqs": false,
"prevent_pos": false,
"notify_supplier": false,
"notify_employee": false,
"employee_link": "employee_link_example"
}
],
"has_more": false,
"total": 1
} /api/buying/supplier-scorecard-standing Create a supplier scorecard standing
Creates a new supplier scorecard standing object.
Body parameters
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Returns
Returns the newly created supplier scorecard standing object if the call succeeded.
curl https://api.overplane.dev/api/buying/supplier-scorecard-standing \
-H "Authorization: Bearer sk_test_..." \
-X POST \
-H "Content-Type: application/json" {
"id": "supplier-scorecard-standing_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"standing_name": "standing_name_example",
"standing_color": "standing_color_example",
"min_grade": 0,
"max_grade": 0,
"warn_rfqs": false,
"warn_pos": false,
"prevent_rfqs": false,
"prevent_pos": false,
"notify_supplier": false,
"notify_employee": false,
"employee_link": "employee_link_example"
} /api/buying/supplier-scorecard-standing/{id} Update a supplier scorecard standing
Updates the specified supplier scorecard standing by setting the values of the parameters passed. Any parameters not provided will be left unchanged.
Path parameters
The identifier of the supplier scorecard standing to update.
Body parameters
Default: false
Default: false
Default: false
Default: false
Default: false
Default: false
Returns
Returns the updated supplier scorecard standing object.
curl https://api.overplane.dev/api/buying/supplier-scorecard-standing/supplier-scorecard-standing_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X PATCH \
-H "Content-Type: application/json" \
-d '{"standing_name":"standing_name_example","standing_color":"standing_color_example"}' {
"id": "supplier-scorecard-standing_abc123",
"created_at": "2024-01-15T09: 30: 00Z",
"updated_at": "2024-01-15T09: 30: 00Z",
"standing_name": "standing_name_example",
"standing_color": "standing_color_example",
"min_grade": 0,
"max_grade": 0,
"warn_rfqs": false,
"warn_pos": false,
"prevent_rfqs": false,
"prevent_pos": false,
"notify_supplier": false,
"notify_employee": false,
"employee_link": "employee_link_example"
} /api/buying/supplier-scorecard-standing/{id} Delete a supplier scorecard standing
Permanently deletes a supplier scorecard standing. This cannot be undone.
Path parameters
The identifier of the supplier scorecard standing to delete.
Returns
Returns a confirmation that the supplier scorecard standing has been deleted.
curl https://api.overplane.dev/api/buying/supplier-scorecard-standing/supplier-scorecard-standing_abc123 \
-H "Authorization: Bearer sk_test_..." \
-X DELETE {
"id": "supplier-scorecard-standing_abc123",
"deleted": true
}