A Rate Card Set represents a group of Rate Cards with multiple currencies that can be bundled together. A Rate Card Set belongs to an account and can have several Rate Card Set Versions, each representing the effective version for a specified date.
If the Rate Card feature is enabled, an account will always have an account default Rate Card Set. Rate Cards belonging to the account default Rate Card Set are applied to projects by default when a Rate Card is not explicitly set.
Additional custom Rate Card Sets can be created after the Rate Cards feature has been enabled on the account. This can be done by making a request to the activations endpoint.
Rate Card Sets are only accessible to users with Financial access (Project Lead or higher) on the account.
An initial request to this endpoint, will generate an account default Rate Card Set and a create a Rate Card Set Version. This account default Rate Card Set will include a separate Rate Card for every currency used in projects on the user's account.
This endpoint returns structured Rate Card Set objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results
array
and will be indexed by ID in the rate_card_sets
top-level JSON key.
Please see our Response Format section for more information.
active | boolean Includes only Rate Card Sets with published Rate Card Set Versions. |
created_after | string <date-time> Filter for records created after a specified datetime. The datetime must be in ISO 8601 format. |
created_before | string <date-time> Filter for records created before a specified datetime. The datetime must be in ISO 8601 format. |
has_active_currency | string Includes only Rate Card Sets that have a rate card with the specified currency and belong to a published Rate Card Set Version. |
has_currency | string Includes only Rate Card Sets that have a rate card with the specified currency. |
include | string Any of the below associations can be included in your request by providing the
|
matching | string Includes only Rate Card Sets with a title matching the specified term. |
only | string Allows you to request one or more resources directly by ID. Multiple IDs can be supplied
in a comma separated list, like |
order | string Default: "created_at:asc" Supply Valid values: |
page | integer <int32> Default: 1 |
per_page | integer <int32> <= 200 Default: 20 |
updated_after | string <date-time> Filter for records updated after a specified datetime. The datetime must be in ISO 8601 format. |
updated_before | string <date-time> Filter for records updated before a specified datetime. The datetime must be in ISO 8601 format. |
workspace_groups | string Filter rate card sets by their associated workspace groups. Provide a comma-separated list of workspace group IDs, for example |
{- "count": 0,
- "meta": {
- "count": 0,
- "page_count": 0,
- "page_number": 0,
- "page_size": 0
}, - "results": [
- {
- "key": "string",
- "id": "string"
}
], - "rate_card_sets": {
- "property1": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}, - "property2": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}
}, - "rate_cards": {
- "property1": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}, - "property2": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}
}, - "rate_card_set_versions": {
- "property1": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}, - "property2": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}
}, - "workspace_groups": {
- "property1": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}, - "property2": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}
}
}
This endpoint returns structured Rate Card Set objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results
array
and will be indexed by ID in the rate_card_sets
top-level JSON key.
Please see our Response Format section for more information.
{- "rate_card_set": {
- "title": "string"
}
}
{- "count": 0,
- "meta": {
- "count": 0,
- "page_count": 0,
- "page_number": 0,
- "page_size": 0
}, - "results": [
- {
- "key": "string",
- "id": "string"
}
], - "rate_card_sets": {
- "property1": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}, - "property2": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}
}, - "rate_cards": {
- "property1": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}, - "property2": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}
}, - "rate_card_set_versions": {
- "property1": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}, - "property2": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}
}, - "workspace_groups": {
- "property1": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}, - "property2": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}
}
}
A Rate Card Set can only be accessed by users with Financial access (Project Lead or higher) on the account.
This endpoint returns structured Rate Card Set objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results
array
and will be indexed by ID in the rate_card_sets
top-level JSON key.
Please see our Response Format section for more information.
{- "count": 0,
- "meta": {
- "count": 0,
- "page_count": 0,
- "page_number": 0,
- "page_size": 0
}, - "results": [
- {
- "key": "string",
- "id": "string"
}
], - "rate_card_sets": {
- "property1": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}, - "property2": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}
}, - "rate_cards": {
- "property1": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}, - "property2": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}
}, - "rate_card_set_versions": {
- "property1": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}, - "property2": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}
}, - "workspace_groups": {
- "property1": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}, - "property2": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}
}
}
This endpoint returns structured Rate Card Set objects.
As with all Kantata OX API endpoints, the returned data will be referenced in sorted order in the results
array
and will be indexed by ID in the rate_card_sets
top-level JSON key.
Please see our Response Format section for more information.
{- "rate_card_set": {
- "title": "string"
}
}
{- "count": 0,
- "meta": {
- "count": 0,
- "page_count": 0,
- "page_number": 0,
- "page_size": 0
}, - "results": [
- {
- "key": "string",
- "id": "string"
}
], - "rate_card_sets": {
- "property1": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}, - "property2": {
- "account_default": true,
- "active_currencies": [
- "string"
], - "created_at": "2019-08-24T14:15:22Z",
- "default_currencies": [
- "string"
], - "destroyable": true,
- "rate_card_ids": [
- "string"
], - "rate_card_set_version_ids": [
- "string"
], - "title": "string",
- "updated_at": "2019-08-24T14:15:22Z",
- "workspace_group_ids": [
- "string"
]
}
}, - "rate_cards": {
- "property1": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}, - "property2": {
- "created_at": "2019-08-24T14:15:22Z",
- "currency": "string",
- "effective_rate_card_version_id": "string",
- "external_reference_ids": [
- "string"
], - "rate_card_set_id": "string",
- "rate_card_set_title": "string",
- "rate_card_version_ids": [
- "string"
], - "removable": true,
- "updated_at": "2019-08-24T14:15:22Z",
- "uses": 0
}
}, - "rate_card_set_versions": {
- "property1": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}, - "property2": {
- "active": true,
- "created_at": "2019-08-24T14:15:22Z",
- "effective_date": "2019-08-24",
- "rate_card_set_id": "string",
- "rate_card_version_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "used_currencies": [
- "string"
]
}
}, - "workspace_groups": {
- "property1": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}, - "property2": {
- "address": "string",
- "company": true,
- "contact_name": "string",
- "created_at": "2019-08-24T14:15:22Z",
- "email": "string",
- "external_reference_ids": [
- "string"
], - "name": "string",
- "notes": "string",
- "phone_number": "string",
- "rate_card_set_ids": [
- "string"
], - "updated_at": "2019-08-24T14:15:22Z",
- "website": "string",
- "workspace_ids": [
- "string"
]
}
}
}
A Rate Card Set cannot be deleted if:
The response will contain no content and an HTTP 204 status code if the request was successful, or a standard Kantata OX error message explaining why the object could not be deleted.
Rate Card Set has been deleted.
Bad Request
Unauthorized request
Forbidden request
Page Not Found
Unprocessable Entity
Service is unavailable
{- "errors": [
- {
- "type": "string",
- "message": "string"
}
]
}