idx int64 0 63k | question stringlengths 53 5.28k | target stringlengths 5 805 |
|---|---|---|
13,600 | def update_invoice ( self , invoice_id , invoice_dict ) : return self . _create_put_request ( resource = INVOICES , billomat_id = invoice_id , send_data = invoice_dict ) | Updates an invoice |
13,601 | def complete_invoice ( self , invoice_id , complete_dict ) : return self . _create_put_request ( resource = INVOICES , billomat_id = invoice_id , command = COMPLETE , send_data = complete_dict ) | Completes an invoice |
13,602 | def invoice_pdf ( self , invoice_id ) : return self . _create_get_request ( resource = INVOICES , billomat_id = invoice_id , command = PDF ) | Opens a pdf of an invoice |
13,603 | def upload_invoice_signature ( self , invoice_id , signature_dict ) : return self . _create_put_request ( resource = INVOICES , billomat_id = invoice_id , send_data = signature_dict , command = UPLOAD_SIGNATURE ) | Uploads a signature for the invoice |
13,604 | def cancel_invoice ( self , invoice_id ) : return self . _create_put_request ( resource = INVOICES , billomat_id = invoice_id , command = CANCEL , ) | Cancelles an invoice |
13,605 | def get_items_of_invoice_per_page ( self , invoice_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INVOICE_ITEMS , per_page = per_page , page = page , params = { 'invoice_id' : invoice_id } , ) | Get invoice items of invoice per page |
13,606 | def get_all_items_of_invoice ( self , invoice_id ) : return self . _iterate_through_pages ( get_function = self . get_items_of_invoice_per_page , resource = INVOICE_ITEMS , ** { 'invoice_id' : invoice_id } ) | Get all items of invoice This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,607 | def update_invoice_item ( self , invoice_item_id , invoice_item_dict ) : return self . _create_put_request ( resource = INVOICE_ITEMS , billomat_id = invoice_item_id , send_data = invoice_item_dict ) | Updates an invoice item |
13,608 | def get_comments_of_invoice_per_page ( self , invoice_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INVOICE_COMMENTS , per_page = per_page , page = page , params = { 'invoice_id' : invoice_id } , ) | Get comments of invoice per page |
13,609 | def get_all_comments_of_invoice ( self , invoice_id ) : return self . _iterate_through_pages ( get_function = self . get_comments_of_invoice_per_page , resource = INVOICE_COMMENTS , ** { 'invoice_id' : invoice_id } ) | Get all invoice comments of invoice This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,610 | def update_invoice_comment ( self , invoice_comment_id , invoice_comment_dict ) : return self . _create_put_request ( resource = INVOICE_COMMENTS , billomat_id = invoice_comment_id , send_data = invoice_comment_dict ) | Updates an invoice comment |
13,611 | def get_invoice_payments_per_page ( self , per_page = 1000 , page = 1 , params = None ) : if not params : params = { } return self . _get_resource_per_page ( resource = INVOICE_PAYMENTS , per_page = per_page , page = page , params = params , ) | Get invoice payments per page |
13,612 | def get_all_invoice_payments ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( get_function = self . get_invoice_payments_per_page , resource = INVOICE_PAYMENTS , ** { 'params' : params } ) | Get all invoice payments This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,613 | def get_tags_of_invoice_per_page ( self , invoice_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INVOICE_TAGS , per_page = per_page , page = page , params = { 'invoice_id' : invoice_id } , ) | Get tags of invoice per page |
13,614 | def get_all_tags_of_invoice ( self , invoice_id ) : return self . _iterate_through_pages ( get_function = self . get_tags_of_invoice_per_page , resource = INVOICE_TAGS , ** { 'invoice_id' : invoice_id } ) | Get all tags of invoice This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,615 | def get_recurrings_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = RECURRINGS , per_page = per_page , page = page , params = params ) | Get recurrings per page |
13,616 | def get_all_recurrings ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_recurrings_per_page , resource = RECURRINGS , ** { 'params' : params } ) | Get all recurrings This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,617 | def update_recurring ( self , recurring_id , recurring_dict ) : return self . _create_put_request ( resource = RECURRINGS , billomat_id = recurring_id , send_data = recurring_dict ) | Updates a recurring |
13,618 | def get_items_of_recurring_per_page ( self , recurring_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = RECURRING_ITEMS , per_page = per_page , page = page , params = { 'recurring_id' : recurring_id } , ) | Get items of recurring per page |
13,619 | def get_all_items_of_recurring ( self , recurring_id ) : return self . _iterate_through_pages ( get_function = self . get_items_of_recurring_per_page , resource = RECURRING_ITEMS , ** { 'recurring_id' : recurring_id } ) | Get all items of recurring This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,620 | def update_recurring_item ( self , recurring_item_id , recurring_item_dict ) : return self . _create_put_request ( resource = RECURRING_ITEMS , billomat_id = recurring_item_id , send_data = recurring_item_dict ) | Updates a recurring item |
13,621 | def get_tags_of_recurring_per_page ( self , recurring_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = RECURRING_TAGS , per_page = per_page , page = page , params = { 'recurring_id' : recurring_id } , ) | Get tags of recurring per page |
13,622 | def get_all_tags_of_recurring ( self , recurring_id ) : return self . _iterate_through_pages ( get_function = self . get_tags_of_recurring_per_page , resource = RECURRING_TAGS , ** { 'recurring_id' : recurring_id } ) | Get all tags of recurring This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,623 | def get_email_receivers_of_recurring_per_page ( self , recurring_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = RECURRING_EMAIL_RECEIVERS , per_page = per_page , page = page , params = { 'recurring_id' : recurring_id } , ) | Get email receivers of recurring per page |
13,624 | def get_all_email_receivers_of_recurring ( self , recurring_id ) : return self . _iterate_through_pages ( get_function = self . get_email_receivers_of_recurring_per_page , resource = RECURRING_EMAIL_RECEIVERS , ** { 'recurring_id' : recurring_id } ) | Get all email receivers of recurring This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,625 | def get_incomings_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = INCOMINGS , per_page = per_page , page = page , params = params ) | Get incomings per page |
13,626 | def get_all_incomings ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_incomings_per_page , resource = INCOMINGS , ** { 'params' : params } ) | Get all incomings This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,627 | def update_incoming ( self , incoming_id , incoming_dict ) : return self . _create_put_request ( resource = INCOMINGS , billomat_id = incoming_id , send_data = incoming_dict ) | Updates an incoming |
13,628 | def get_comments_of_incoming_per_page ( self , incoming_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INCOMING_COMMENTS , per_page = per_page , page = page , params = { 'incoming_id' : incoming_id } , ) | Get comments of incoming per page |
13,629 | def get_all_comments_of_incoming ( self , incoming_id ) : return self . _iterate_through_pages ( get_function = self . get_comments_of_incoming_per_page , resource = INCOMING_COMMENTS , ** { 'incoming_id' : incoming_id } ) | Get all comments of incoming This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,630 | def get_payments_of_incoming_per_page ( self , incoming_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INCOMING_PAYMENTS , per_page = per_page , page = page , params = { 'incoming_id' : incoming_id } , ) | Get payments of incoming per page |
13,631 | def get_all_payments_of_incoming ( self , incoming_id ) : return self . _iterate_through_pages ( get_function = self . get_payments_of_incoming_per_page , resource = INCOMING_PAYMENTS , ** { 'incoming_id' : incoming_id } ) | Get all payments of incoming This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,632 | def get_incoming_properties_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = INCOMING_PROPERTIES , per_page = per_page , page = page , params = params ) | Get incoming properties per page |
13,633 | def get_all_incoming_properties ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_incoming_properties_per_page , resource = INCOMING_PROPERTIES , ** { 'params' : params } ) | Get all incoming properties This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,634 | def get_tags_of_incoming_per_page ( self , incoming_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INCOMING_TAGS , per_page = per_page , page = page , params = { 'incoming_id' : incoming_id } , ) | Get tags of incoming per page |
13,635 | def get_all_tags_of_incoming ( self , incoming_id ) : return self . _iterate_through_pages ( get_function = self . get_tags_of_incoming_per_page , resource = INCOMING_TAGS , ** { 'incoming_id' : incoming_id } ) | Get all tags of incoming This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,636 | def get_inbox_documents_per_page ( self , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = INBOX_DOCUMENTS , per_page = per_page , page = page , ) | Get inbox documents per page |
13,637 | def get_offers_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = OFFERS , per_page = per_page , page = page , params = params ) | Get offers per page |
13,638 | def get_all_offers ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_offers_per_page , resource = OFFERS , ** { 'params' : params } ) | Get all offers This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,639 | def update_offer ( self , offer_id , offer_dict ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , send_data = offer_dict ) | Updates an offer |
13,640 | def complete_offer ( self , offer_id , complete_dict ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , command = COMPLETE , send_data = complete_dict ) | Completes an offer |
13,641 | def offer_pdf ( self , offer_id ) : return self . _create_get_request ( resource = OFFERS , billomat_id = offer_id , command = PDF ) | Opens a pdf of an offer |
13,642 | def cancel_offer ( self , offer_id ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , command = CANCEL , ) | Cancelles an offer |
13,643 | def mark_offer_as_win ( self , offer_id ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , command = WIN , ) | Mark offer as win |
13,644 | def mark_offer_as_lose ( self , offer_id ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , command = LOSE , ) | Mark offer as lose |
13,645 | def mark_offer_as_clear ( self , offer_id ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , command = CLEAR , ) | Mark offer as clear |
13,646 | def mark_offer_as_unclear ( self , offer_id ) : return self . _create_put_request ( resource = OFFERS , billomat_id = offer_id , command = UNCLEAR , ) | Mark offer as unclear |
13,647 | def get_items_of_offer_per_page ( self , offer_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = OFFER_ITEMS , per_page = per_page , page = page , params = { 'offer_id' : offer_id } , ) | Get items of offer per page |
13,648 | def get_all_items_of_offer ( self , offer_id ) : return self . _iterate_through_pages ( get_function = self . get_items_of_offer_per_page , resource = OFFER_ITEMS , ** { 'offer_id' : offer_id } ) | Get all items of offer This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,649 | def update_offer_item ( self , offer_item_id , offer_item_dict ) : return self . _create_put_request ( resource = OFFER_ITEMS , billomat_id = offer_item_id , send_data = offer_item_dict ) | Updates an offer item |
13,650 | def get_comments_of_offer_per_page ( self , offer_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = OFFER_COMMENTS , per_page = per_page , page = page , params = { 'offer_id' : offer_id } , ) | Get comments of offer per page |
13,651 | def get_all_comments_of_offer ( self , offer_id ) : return self . _iterate_through_pages ( get_function = self . get_comments_of_offer_per_page , resource = OFFER_COMMENTS , ** { 'offer_id' : offer_id } ) | Get all comments of offer This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,652 | def update_offer_comment ( self , offer_comment_id , offer_comment_dict ) : return self . _create_put_request ( resource = OFFER_COMMENTS , billomat_id = offer_comment_id , send_data = offer_comment_dict ) | Updates an offer comment |
13,653 | def get_tags_of_offer_per_page ( self , offer_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = OFFER_TAGS , per_page = per_page , page = page , params = { 'offer_id' : offer_id } , ) | Get tags of offer per page |
13,654 | def get_all_tags_of_offer ( self , offer_id ) : return self . _iterate_through_pages ( get_function = self . get_tags_of_offer_per_page , resource = OFFER_TAGS , ** { 'offer_id' : offer_id } ) | Get all tags of offer This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,655 | def get_credit_notes_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = CREDIT_NOTES , per_page = per_page , page = page , params = params ) | Get credit notes per page |
13,656 | def get_all_credit_notes ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_credit_notes_per_page , resource = CREDIT_NOTES , ** { 'params' : params } ) | Get all credit notes This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,657 | def update_credit_note ( self , credit_note_id , credit_note_dict ) : return self . _create_put_request ( resource = CREDIT_NOTES , billomat_id = credit_note_id , send_data = credit_note_dict ) | Updates a credit note |
13,658 | def complete_credit_note ( self , credit_note_it , complete_dict ) : return self . _create_put_request ( resource = CREDIT_NOTES , billomat_id = credit_note_it , command = COMPLETE , send_data = complete_dict ) | Completes an credit note |
13,659 | def credit_note_pdf ( self , credit_note_it ) : return self . _create_get_request ( resource = CREDIT_NOTES , billomat_id = credit_note_it , command = PDF ) | Opens a pdf of a credit note |
13,660 | def upload_credit_note_signature ( self , credit_note_it , signature_dict ) : return self . _create_put_request ( resource = CREDIT_NOTES , billomat_id = credit_note_it , send_data = signature_dict , command = UPLOAD_SIGNATURE ) | Uploads a signature for the credit note |
13,661 | def get_items_of_credit_note_per_page ( self , credit_note_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CREDIT_NOTE_ITEMS , per_page = per_page , page = page , params = { 'credit_note_id' : credit_note_id } , ) | Get items of credit note per page |
13,662 | def get_all_items_of_credit_note ( self , credit_note_id ) : return self . _iterate_through_pages ( get_function = self . get_items_of_credit_note_per_page , resource = CREDIT_NOTE_ITEMS , ** { 'credit_note_id' : credit_note_id } ) | Get all items of credit note This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,663 | def update_credit_note_item ( self , credit_note_item_id , credit_note_item_dict ) : return self . _create_put_request ( resource = CREDIT_NOTE_ITEMS , billomat_id = credit_note_item_id , send_data = credit_note_item_dict ) | Updates a credit note item |
13,664 | def get_comments_of_credit_note_per_page ( self , credit_note_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CREDIT_NOTE_COMMENTS , per_page = per_page , page = page , params = { 'credit_note_id' : credit_note_id } , ) | Get comments of credit note per page |
13,665 | def get_all_comments_of_credit_note ( self , credit_note_id ) : return self . _iterate_through_pages ( get_function = self . get_comments_of_credit_note_per_page , resource = CREDIT_NOTE_COMMENTS , ** { 'credit_note_id' : credit_note_id } ) | Get all comments of credit note This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,666 | def update_credit_note_comment ( self , credit_note_comment_id , credit_note_comment_dict ) : return self . _create_put_request ( resource = CREDIT_NOTE_COMMENTS , billomat_id = credit_note_comment_id , send_data = credit_note_comment_dict ) | Updates a credit note comment |
13,667 | def get_payments_of_credit_note_per_page ( self , credit_note_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CREDIT_NOTE_PAYMENTS , per_page = per_page , page = page , params = { 'credit_note_id' : credit_note_id } , ) | Get payments of credit note per page |
13,668 | def get_all_payments_of_credit_note ( self , credit_note_id ) : return self . _iterate_through_pages ( get_function = self . get_payments_of_credit_note_per_page , resource = CREDIT_NOTE_PAYMENTS , ** { 'credit_note_id' : credit_note_id } ) | Get all payments of credit note This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,669 | def get_tags_of_credit_note_per_page ( self , credit_note_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CREDIT_NOTE_TAGS , per_page = per_page , page = page , params = { 'credit_note_id' : credit_note_id } , ) | Get tags of credit note per page |
13,670 | def get_confirmations_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = CONFIRMATIONS , per_page = per_page , page = page , params = params ) | Get confirmations per page |
13,671 | def get_all_confirmations ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_confirmations_per_page , resource = CONFIRMATIONS , ** { 'params' : params } ) | Get all confirmations This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,672 | def update_confirmation ( self , confirmation_id , confirmation_dict ) : return self . _create_put_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , send_data = confirmation_dict ) | Updates a confirmation |
13,673 | def complete_confirmation ( self , confirmation_id , complete_dict ) : return self . _create_put_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , command = COMPLETE , send_data = complete_dict ) | Completes an confirmation |
13,674 | def confirmation_pdf ( self , confirmation_id ) : return self . _create_get_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , command = PDF ) | Opens a pdf of a confirmation |
13,675 | def cancel_confirmation ( self , confirmation_id ) : return self . _create_put_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , command = CANCEL , ) | Cancelles an confirmation |
13,676 | def uncancel_confirmation ( self , confirmation_id ) : return self . _create_put_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , command = UNCANCEL , ) | Uncancelles an confirmation |
13,677 | def mark_confirmation_as_clear ( self , confirmation_id ) : return self . _create_put_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , command = CLEAR , ) | Mark confirmation as clear |
13,678 | def mark_confirmation_as_unclear ( self , confirmation_id ) : return self . _create_put_request ( resource = CONFIRMATIONS , billomat_id = confirmation_id , command = UNCLEAR , ) | Mark confirmation as unclear |
13,679 | def get_items_of_confirmation_per_page ( self , confirmation_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CONFIRMATION_ITEMS , per_page = per_page , page = page , params = { 'confirmation_id' : confirmation_id } , ) | Get items of confirmation per page |
13,680 | def get_all_items_of_confirmation ( self , confirmation_id ) : return self . _iterate_through_pages ( get_function = self . get_items_of_confirmation_per_page , resource = CONFIRMATION_ITEMS , ** { 'confirmation_id' : confirmation_id } ) | Get all items of confirmation This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,681 | def update_confirmation_item ( self , confirmation_item_id , confirmation_item_dict ) : return self . _create_put_request ( resource = CONFIRMATION_ITEMS , billomat_id = confirmation_item_id , send_data = confirmation_item_dict ) | Updates a confirmation item |
13,682 | def get_comments_of_confirmation_per_page ( self , confirmation_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CONFIRMATION_COMMENTS , per_page = per_page , page = page , params = { 'confirmation_id' : confirmation_id } , ) | Get comments of confirmation per page |
13,683 | def get_all_comments_of_confirmation ( self , confirmation_id ) : return self . _iterate_through_pages ( get_function = self . get_comments_of_confirmation_per_page , resource = CONFIRMATION_COMMENTS , ** { 'confirmation_id' : confirmation_id } ) | Get all comments of confirmation This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,684 | def update_confirmation_comment ( self , confirmation_comment_id , confirmation_comment_dict ) : return self . _create_put_request ( resource = CONFIRMATION_COMMENTS , billomat_id = confirmation_comment_id , send_data = confirmation_comment_dict ) | Updates a confirmation comment |
13,685 | def get_tags_of_confirmation_per_page ( self , confirmation_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = CONFIRMATION_TAGS , per_page = per_page , page = page , params = { 'confirmation_id' : confirmation_id } , ) | Get tags of confirmation per page |
13,686 | def get_all_tags_of_confirmation ( self , confirmation_id ) : return self . _iterate_through_pages ( get_function = self . get_tags_of_confirmation_per_page , resource = CONFIRMATION_TAGS , ** { 'confirmation_id' : confirmation_id } ) | Get all tags of confirmation This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,687 | def get_reminders_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = REMINDERS , per_page = per_page , page = page , params = params ) | Get reminders per page |
13,688 | def get_all_reminders ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_reminders_per_page , resource = REMINDERS , ** { 'params' : params } ) | Get all reminders This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,689 | def update_reminder ( self , reminder_id , reminder_dict ) : return self . _create_put_request ( resource = REMINDERS , billomat_id = reminder_id , send_data = reminder_dict ) | Updates a reminder |
13,690 | def complete_reminder ( self , reminder_id , complete_dict ) : return self . _create_put_request ( resource = REMINDERS , billomat_id = reminder_id , command = COMPLETE , send_data = complete_dict ) | Completes a reminder |
13,691 | def reminder_pdf ( self , reminder_id ) : return self . _create_get_request ( resource = REMINDERS , billomat_id = reminder_id , command = PDF ) | Opens a pdf of a reminder |
13,692 | def get_items_of_reminder_per_page ( self , reminder_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = REMINDER_ITEMS , per_page = per_page , page = page , params = { 'reminder_id' : reminder_id } , ) | Get items of reminder per page |
13,693 | def get_all_items_of_reminder ( self , reminder_id ) : return self . _iterate_through_pages ( get_function = self . get_items_of_reminder_per_page , resource = REMINDER_ITEMS , ** { 'reminder_id' : reminder_id } ) | Get all items of reminder This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,694 | def update_reminder_item ( self , reminder_item_id , reminder_item_dict ) : return self . _create_put_request ( resource = REMINDER_ITEMS , billomat_id = reminder_item_id , send_data = reminder_item_dict ) | Updates a reminder item |
13,695 | def get_tags_of_reminder_per_page ( self , reminder_id , per_page = 1000 , page = 1 ) : return self . _get_resource_per_page ( resource = REMINDER_TAGS , per_page = per_page , page = page , params = { 'reminder_id' : reminder_id } , ) | Get tags of reminder per page |
13,696 | def get_all_tags_of_reminder ( self , reminder_id ) : return self . _iterate_through_pages ( get_function = self . get_tags_of_reminder_per_page , resource = REMINDER_TAGS , ** { 'reminder_id' : reminder_id } ) | Get all tags of reminder This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,697 | def get_delivery_notes_per_page ( self , per_page = 1000 , page = 1 , params = None ) : return self . _get_resource_per_page ( resource = DELIVERY_NOTES , per_page = per_page , page = page , params = params ) | Get delivery notes per page |
13,698 | def get_all_delivery_notes ( self , params = None ) : if not params : params = { } return self . _iterate_through_pages ( self . get_delivery_notes_per_page , resource = DELIVERY_NOTES , ** { 'params' : params } ) | Get all delivery notes This will iterate over all pages until it gets all elements . So if the rate limit exceeded it will throw an Exception and you will get nothing |
13,699 | def update_delivery_note ( self , delivery_note_id , delivery_note_dict ) : return self . _create_put_request ( resource = DELIVERY_NOTES , billomat_id = delivery_note_id , send_data = delivery_note_dict ) | Updates a delivery note |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.