{"files":{"SKILL.md":"---\nname: storecove-api\ndescription: \"Storecove API skill. Use when working with Storecove for invoice_submissions, document_submissions, legal_entities. Covers 37 endpoints.\"\nversion: 1.0.0\ngenerator: lapsh\n---\n\n# Storecove API\nAPI version: 2.0.1\n\n## Auth\nApiKey Authorization in header\n\n## Base URL\nhttps://api.storecove.com/api/v2\n\n## Setup\n1. Set your API key in the appropriate header\n2. GET /webhook_instances/ -- get a webhookinstance\n3. POST /invoice_submissions -- create first invoice_submission\n\n## Endpoints\n37 endpoints across 8 groups. See references/api-spec.lap for full details.\n\n### Invoice_submissions\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /invoice_submissions/{guid}/evidence | DEPRECATED. Get InvoiceSubmission Evidence |\n| POST | /invoice_submissions | DEPRECATED. Submit a new invoice |\n| POST | /invoice_submissions/preflight | DEPRECATED. Preflight an invoice recipient |\n\n### Document_submissions\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /document_submissions | Submit a new document. |\n| GET | /document_submissions/{guid}/evidence/{evidence_type} | Get DocumentSubmission Evidence |\n\n### Legal_entities\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /legal_entities | Create a new LegalEntity |\n| GET | /legal_entities/{id} | Get LegalEntity |\n| DELETE | /legal_entities/{id} | Delete LegalEntity |\n| PATCH | /legal_entities/{id} | Update LegalEntity |\n| POST | /legal_entities/{legal_entity_id}/peppol_identifiers | Create a new PeppolIdentifier |\n| DELETE | /legal_entities/{legal_entity_id}/peppol_identifiers/{superscheme}/{scheme}/{identifier} | Delete PeppolIdentifier |\n| POST | /legal_entities/{legal_entity_id}/administrations | DEPRECATED. Create a new Administration |\n| GET | /legal_entities/{legal_entity_id}/administrations/{id} | DEPRECATED. Get Administration |\n| DELETE | /legal_entities/{legal_entity_id}/administrations/{id} | DEPRECATED. Delete Administration |\n| PATCH | /legal_entities/{legal_entity_id}/administrations/{id} | DEPRECATED. Update Administration |\n| POST | /legal_entities/{legal_entity_id}/additional_tax_identifiers | Create a new AdditionalTaxIdentifier |\n| GET | /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id} | Get AdditionalTaxIdentifier |\n| DELETE | /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id} | Delete AdditionalTaxIdentifier |\n| PATCH | /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id} | Update AdditionalTaxIdentifier |\n| POST | /legal_entities/{legal_entity_id}/received_documents | Receive a new Document |\n\n### Purchase_invoices\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /purchase_invoices/{guid} | DEPRECATED. Get Purchase invoice data as JSON |\n| GET | /purchase_invoices/{guid}/{packaging} | DEPRECATED. Get Purchase invoice data in a selectable format |\n| GET | /purchase_invoices/{guid}/{packaging}/{package_version} | DEPRECATED. Get Purchase invoice data as JSON with a Base64-encoded UBL string in the specified version |\n\n### Webhook_instances\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /webhook_instances/ | GET a WebhookInstance |\n| DELETE | /webhook_instances/{guid} | DELETE a WebhookInstance |\n\n### Discovery\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /discovery/receives | Discover Network Participant Capabilites |\n| POST | /discovery/exists | Discover Network Participant Existence |\n| GET | /discovery/identifiers | Discover Country Identifiers ** EXPERIMENTAL |\n\n### Received_documents\n| Method | Path | Description |\n|--------|------|-------------|\n| GET | /received_documents/{guid}/{format} | Get a new ReceivedDocument |\n\n### Api\n| Method | Path | Description |\n|--------|------|-------------|\n| POST | /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/activate | Request a new C5 Email Activation |\n| POST | /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/deactivate | Request a new C5 Email Deactivation |\n| PUT | /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/cancel | Cancel a C5 email activation or deactivation |\n| POST | /api/v2/legal_entities/{legal_entity_id}/c5/iras/redirect/activate | Request a new C5 Redirect Activation |\n| POST | /api/v2/legal_entities/{legal_entity_id}/c5/iras/redirect/deactivate | Request a new C5 Redirect Deactivation |\n| PUT | /api/v2/legal_entities/{legal_entity_id}/c5/iras/redirect/cancel | Cancel a C5 redirect activation or deactivation |\n| POST | /api/v2/legal_entities/{legal_entity_id}/c5_activation/activate | DEPRECATED. Request a new C5 Activation |\n| POST | /api/v2/legal_entities/{legal_entity_id}/c5_deactivation/deactivate | DEPRECATED. Request a new C5 Deactivation |\n\n## Common Questions\nMatch user requests to endpoints in references/api-spec.lap. Key patterns:\n- \"List all evidence?\" -> GET /invoice_submissions/{guid}/evidence\n- \"Create a invoice_submission?\" -> POST /invoice_submissions\n- \"Create a document_submission?\" -> POST /document_submissions\n- \"Get evidence details?\" -> GET /document_submissions/{guid}/evidence/{evidence_type}\n- \"Create a preflight?\" -> POST /invoice_submissions/preflight\n- \"Create a legal_entity?\" -> POST /legal_entities\n- \"Get legal_entity details?\" -> GET /legal_entities/{id}\n- \"Delete a legal_entity?\" -> DELETE /legal_entities/{id}\n- \"Partially update a legal_entity?\" -> PATCH /legal_entities/{id}\n- \"Create a peppol_identifier?\" -> POST /legal_entities/{legal_entity_id}/peppol_identifiers\n- \"Delete a peppol_identifier?\" -> DELETE /legal_entities/{legal_entity_id}/peppol_identifiers/{superscheme}/{scheme}/{identifier}\n- \"Create a administration?\" -> POST /legal_entities/{legal_entity_id}/administrations\n- \"Get administration details?\" -> GET /legal_entities/{legal_entity_id}/administrations/{id}\n- \"Delete a administration?\" -> DELETE /legal_entities/{legal_entity_id}/administrations/{id}\n- \"Partially update a administration?\" -> PATCH /legal_entities/{legal_entity_id}/administrations/{id}\n- \"Create a additional_tax_identifier?\" -> POST /legal_entities/{legal_entity_id}/additional_tax_identifiers\n- \"Get additional_tax_identifier details?\" -> GET /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}\n- \"Delete a additional_tax_identifier?\" -> DELETE /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}\n- \"Partially update a additional_tax_identifier?\" -> PATCH /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}\n- \"Get purchase_invoice details?\" -> GET /purchase_invoices/{guid}\n- \"List all webhook_instances?\" -> GET /webhook_instances/\n- \"Delete a webhook_instance?\" -> DELETE /webhook_instances/{guid}\n- \"Create a receive?\" -> POST /discovery/receives\n- \"Create a exist?\" -> POST /discovery/exists\n- \"List all identifiers?\" -> GET /discovery/identifiers\n- \"Create a received_document?\" -> POST /legal_entities/{legal_entity_id}/received_documents\n- \"Get received_document details?\" -> GET /received_documents/{guid}/{format}\n- \"Create a activate?\" -> POST /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/activate\n- \"Create a deactivate?\" -> POST /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/deactivate\n- \"How to authenticate?\" -> See Auth section above\n\n## Response Tips\n- Check response schemas in references/api-spec.lap for field details\n- Create/update endpoints return the modified resource on success\n- Error responses include status codes and descriptions in the spec\n\n## References\n- Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas\n\n> Generated from the official API spec by [LAP](https://lap.sh)\n","references/api-spec.lap":"@lap v0.3\n# Machine-readable API spec. Each @endpoint block is one API call.\n@api Storecove API\n@base https://api.storecove.com/api/v2\n@version 2.0.1\n@auth ApiKey Authorization in header\n@endpoints 37\n@hint download_for_search\n@toc invoice_submissions(3), document_submissions(2), legal_entities(15), purchase_invoices(3), webhook_instances(2), discovery(3), received_documents(1), api(8)\n\n@group invoice_submissions\n@endpoint GET /invoice_submissions/{guid}/evidence\n@desc DEPRECATED. Get InvoiceSubmission Evidence\n@required {guid: any # InvoiceSubmission GUID}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint POST /invoice_submissions\n@desc DEPRECATED. Submit a new invoice\n@required {invoice_submission: map # Invoice to submit}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity}\n\n@endgroup\n\n@group document_submissions\n@endpoint POST /document_submissions\n@desc Submit a new document.\n@required {document_submission: map # Document to submit}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity}\n\n@endpoint GET /document_submissions/{guid}/evidence/{evidence_type}\n@desc Get DocumentSubmission Evidence\n@required {guid: any # DocumentSubmission GUID}\n@optional {evidence_type: any # Type of evidence requested}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endgroup\n\n@group invoice_submissions\n@endpoint POST /invoice_submissions/preflight\n@desc DEPRECATED. Preflight an invoice recipient\n@required {invoice_recipient_preflight: map # The invoice recipient to preflight}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity}\n\n@endgroup\n\n@group legal_entities\n@endpoint POST /legal_entities\n@desc Create a new LegalEntity\n@required {legal_entity: any # LegalEntity to create}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity}\n\n@endpoint GET /legal_entities/{id}\n@desc Get LegalEntity\n@required {id: any # legal_entity id}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint DELETE /legal_entities/{id}\n@desc Delete LegalEntity\n@required {id: any # legal_entity id}\n@returns(204) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint PATCH /legal_entities/{id}\n@desc Update LegalEntity\n@required {id: any # legal_entity id, legal_entity: any # LegalEntity updates}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint POST /legal_entities/{legal_entity_id}/peppol_identifiers\n@desc Create a new PeppolIdentifier\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the PeppolIdentifier, peppol_identifier: any # PeppolIdentifier to create}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint DELETE /legal_entities/{legal_entity_id}/peppol_identifiers/{superscheme}/{scheme}/{identifier}\n@desc Delete PeppolIdentifier\n@required {legal_entity_id: any # The id of the LegalEntity this PeppolIdentifier belongs to, superscheme: any # The superscheme of the identifier. Should always be \"iso6523-actorid-upis\"., scheme: any # PEPPOL identifier scheme id, e.g. \"DE:VAT\". For a full list see >., identifier: any # PEPPOL identifier}\n@returns(204) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint POST /legal_entities/{legal_entity_id}/administrations\n@desc DEPRECATED. Create a new Administration\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the Administration, administration: any # Administration to create}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint GET /legal_entities/{legal_entity_id}/administrations/{id}\n@desc DEPRECATED. Get Administration\n@required {legal_entity_id: any # The id of the LegalEntity the Administration belongs to, id: any # The id of the Administration}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint DELETE /legal_entities/{legal_entity_id}/administrations/{id}\n@desc DEPRECATED. Delete Administration\n@required {legal_entity_id: any # The id of the LegalEntity the Administration belongs to, id: any # The id of the Administration}\n@returns(204) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint PATCH /legal_entities/{legal_entity_id}/administrations/{id}\n@desc DEPRECATED. Update Administration\n@required {legal_entity_id: any # The id of the LegalEntity the Administration belongs to, id: any # The id of the Administration to be updated, administration: any # Administration to update}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint POST /legal_entities/{legal_entity_id}/additional_tax_identifiers\n@desc Create a new AdditionalTaxIdentifier\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the AdditionalTaxIdentifier, additional_tax_identifier: any # AdditionalTaxIdentifier to create}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint GET /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}\n@desc Get AdditionalTaxIdentifier\n@required {legal_entity_id: any # The id of the LegalEntity the AdditionalTaxIdentifier belongs to, id: any # The id of the AdditionalTaxIdentifier}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint DELETE /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}\n@desc Delete AdditionalTaxIdentifier\n@required {legal_entity_id: any # The id of the LegalEntity the AdditionalTaxIdentifier belongs to, id: any # The id of the AdditionalTaxIdentifier}\n@returns(204) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint PATCH /legal_entities/{legal_entity_id}/additional_tax_identifiers/{id}\n@desc Update AdditionalTaxIdentifier\n@required {legal_entity_id: any # The id of the LegalEntity the AdditionalTaxIdentifier belongs to, id: any # The id of the AdditionalTaxIdentifier to be updated, additional_tax_identifier: any # AdditionalTaxIdentifier to update}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endgroup\n\n@group purchase_invoices\n@endpoint GET /purchase_invoices/{guid}\n@desc DEPRECATED. Get Purchase invoice data as JSON\n@required {guid: any # The guid of the purchase invoice, from the webhook.}\n@optional {pmv: any # DEPRECATED. The PaymentMeans version. The default (and deprecated) version 1.0 will give BankPaymentMean, DirectDebitPaymentMean, CardPaymentMean, NppPaymentMean, SeBankGiroPaymentMean, SePlusGiroPaymentMean, SgCardPaymentMean, SgGiroPaymentMean, SgPaynowPaymentMean.  Version 2.0 deprecates BankPaymentMean (now CreditTransferPaymentMean), CardPaymentMean (now CreditCardPaymentMean), NppPaymentMean (now AunzNppPayidPaymentMean), SeBankGiroPaymentMean (now SeBankgiroPaymentMean  -- note the lower 'g' in 'bankgiro'). It also adds OnlinePaymentServicePaymentMean, StandingAgreementPaymentMean, AunzNppPaytoPaymentMean, AunzBpayPaymentMean, AunzPostbillpayPaymentMean, AunzUriPaymentMean., version: any # The JSON content version date. The default is '1970-01-01' meaning you get all deprecated elements since nothing was deprecated before that ;). If you do not want deprecated elements, use a later date. Do not use a dynamic date, because that means when we deprecate elements they will disappear from our responses.}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint GET /purchase_invoices/{guid}/{packaging}\n@desc DEPRECATED. Get Purchase invoice data in a selectable format\n@required {guid: any # purchase invoice guid, packaging: any # How to package the purchase invoice. Note that \"ubl\" is deprecated.}\n@optional {pmv: any # DEPRECATED. The PaymentMeans version. The default (and deprecated) version 1.0 will give BankPaymentMean, DirectDebitPaymentMean, CardPaymentMean, NppPaymentMean, SeBankGiroPaymentMean, SePlusGiroPaymentMean, SgCardPaymentMean, SgGiroPaymentMean, SgPaynowPaymentMean.  Version 2.0 deprecates BankPaymentMean (now CreditTransferPaymentMean), CardPaymentMean (now CreditCardPaymentMean), NppPaymentMean (now AunzNppPayidPaymentMean), SeBankGiroPaymentMean (now SeBankgiroPaymentMean  -- note the lower 'g' in 'bankgiro'). It also adds OnlinePaymentServicePaymentMean, StandingAgreementPaymentMean, AunzNppPaytoPaymentMean, AunzBpayPaymentMean, AunzPostbillpayPaymentMean, AunzUriPaymentMean., version: any # The JSON content version date. The default is '1970-01-01' meaning you get all deprecated elements since nothing was deprecated before that ;). If you do not want deprecated elements, use a later date. Do not use a dynamic date, because that means when we deprecate elements they will disappear from our responses. Only used for 'json' packaging, not for 'original'.}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint GET /purchase_invoices/{guid}/{packaging}/{package_version}\n@desc DEPRECATED. Get Purchase invoice data as JSON with a Base64-encoded UBL string in the specified version\n@required {guid: any # purchase invoice guid, packaging: any # How to package the purchase invoice., package_version: any # The version of the package.}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endgroup\n\n@group webhook_instances\n@endpoint GET /webhook_instances/\n@desc GET a WebhookInstance\n@returns(200) Success\n@returns(204) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endpoint DELETE /webhook_instances/{guid}\n@desc DELETE a WebhookInstance\n@required {guid: any # WebhookInstance guid}\n@returns(204) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found}\n\n@endgroup\n\n@group discovery\n@endpoint POST /discovery/receives\n@desc Discover Network Participant Capabilites\n@required {discoverable_participant: map # The participant to check}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity}\n\n@endpoint POST /discovery/exists\n@desc Discover Network Participant Existence\n@required {discoverable_participant: map # The participant to check}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity}\n\n@endpoint GET /discovery/identifiers\n@desc Discover Country Identifiers ** EXPERIMENTAL\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden}\n\n@endgroup\n\n@group legal_entities\n@endpoint POST /legal_entities/{legal_entity_id}/received_documents\n@desc Receive a new Document\n@required {legal_entity_id: any # The id of the LegalEntity for which the document was received., received_document: any # Received document to process.}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endgroup\n\n@group received_documents\n@endpoint GET /received_documents/{guid}/{format}\n@desc Get a new ReceivedDocument\n@required {guid: any # The guid of the document that was received. This is the \"document_guid\" property of the \"received_document\" webhook.}\n@optional {format: any # The format in which to receive the received document., version: any # The JSON content version date. The default is '1970-01-01' meaning you get all deprecated elements since nothing was deprecated before that ;). If you do not want deprecated elements, use a later date. Do not use a dynamic date, because that means when we deprecate elements they will disappear from our responses. Only used for 'json' packaging, not for 'original'. Not currently used for invoices, only for orders.}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 404: Not Found, 400: Bad Request}\n\n@endgroup\n\n@group api\n@endpoint POST /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/activate\n@desc Request a new C5 Email Activation\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the C5EmailRequest, c5_email_request: map # The C5EmailRequest to initiate}\n@returns(204) Empty success response\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint POST /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/deactivate\n@desc Request a new C5 Email Deactivation\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the C5EmailRequest, c5_email_request: map # The C5EmailRequest to initiate}\n@returns(204) Empty success response\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint PUT /api/v2/legal_entities/{legal_entity_id}/c5/iras/email/cancel\n@desc Cancel a C5 email activation or deactivation\n@required {legal_entity_id: any # Legal entity ID, c5_email_cancellation_request: map # The C5EmailCancellationRequest to cancel}\n@returns(204) If cancellation of a initiated C5 activation / C5 deactivation is successful.\n@errors {422: The C5 activation/deactivation is in an incorrect state and can not be cancelled.}\n\n@endpoint POST /api/v2/legal_entities/{legal_entity_id}/c5/iras/redirect/activate\n@desc Request a new C5 Redirect Activation\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the C5RedirectRequest, c5_redirect_request: map # The C5RedirectRequest to initiate}\n@returns(200) Success response\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint POST /api/v2/legal_entities/{legal_entity_id}/c5/iras/redirect/deactivate\n@desc Request a new C5 Redirect Deactivation\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the C5RedirectRequest, c5_redirect_request: map # The C5RedirectRequest to initiate}\n@returns(200) Success response\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint PUT /api/v2/legal_entities/{legal_entity_id}/c5/iras/redirect/cancel\n@desc Cancel a C5 redirect activation or deactivation\n@required {legal_entity_id: any # Legal entity ID, c5_redirect_cancellation_request: map # The C5RedirectCancellationRequest to cancel}\n@returns(204) If cancellation of a initiated C5 activation / C5 deactivation is successful.\n@errors {422: The C5 activation/deactivation is in an incorrect state and can not be cancelled.}\n\n@endpoint POST /api/v2/legal_entities/{legal_entity_id}/c5_activation/activate\n@desc DEPRECATED. Request a new C5 Activation\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the C5ActivationRequest, c5_activation_request: map # The C5ActivationRequest to initiate}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endpoint POST /api/v2/legal_entities/{legal_entity_id}/c5_deactivation/deactivate\n@desc DEPRECATED. Request a new C5 Deactivation\n@required {legal_entity_id: any # The id of the LegalEntity for which to create the C5DeactivationRequest, c5_deactivation_request: map # The C5DeactivationRequest to initiate}\n@returns(200) Success\n@errors {401: Unauthorized, 403: Forbidden, 422: Unprocessable Entity, 404: Not Found}\n\n@endgroup\n\n@end\n"}}