diff --git a/lib/NGCP/Panel/Controller/API/Customers.pm b/lib/NGCP/Panel/Controller/API/Customers.pm
index a0cf697b05..7725fac266 100644
--- a/lib/NGCP/Panel/Controller/API/Customers.pm
+++ b/lib/NGCP/Panel/Controller/API/Customers.pm
@@ -20,7 +20,18 @@ class_has 'api_description' => (
is => 'ro',
isa => 'Str',
default =>
- 'Defines a billing container for end customers. Customers usually have one or more Subscribers. A Billing Profile is assigned to a customer, and it has Contract Balances indicating the saldo of the customer for current and past billing intervals.',
+ 'Defines a billing container for end customers. Customers usually have one or more Subscribers. A Billing Profile is assigned to a customer, and it has Contract Balances indicating the saldo of the customer for current and past billing intervals. Customer can be one of the "sipaccount" or "pbxaccount" type. Type should be specified as "type" parameter.',
+);
+class_has 'documentation_sample' => (
+ is => 'ro',
+ default => sub {
+ {
+ "billing_profile_id" => 4,
+ "type" => "sipaccount",
+ "contact_id" => 4,
+ "status" => "test",
+ }
+ },
);
class_has 'query_params' => (