API Registration
This endpoint is used to fetch all the api_config profiles in the current organization
Items Per Page
Page Number
Sorting Order
Sorting Key
GET /ux/common/apiregister/profile/?items_per_page=1&page=1 HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
[
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
]
This endpoint is used to save a new api_config for the current organization
No response body
No content
POST /ux/common/apiregister/profile/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 390
{
"headerParamList": [
{
"keys": "sort",
"values": "name"
},
{
"keys": "reverse",
"values": "-"
}
],
"name": "API Auth",
"content_type": 1,
"authentication_type": "Basic Auth",
"user_name": "shilpa.v",
"password": "hanTZ123$",
"api_url": "http://test-api-auth.com",
"description": "Test API Auth",
"enc_password": "ZDk5NjMwYmNjNzA1ODYzOWU3ZTgwZGYyMzlmMzhhMzI6OlUyRnNkR1ZrWDE5ZGJ5YUp3azBHT01OZ2dwVldQUFVlaEhmOVE2SVBreWs9"
}
No response body
No content
This endpoint is used to fetch a api_config details in the current organization
GET /ux/common/apiregister/profile/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
This endpoint is used to edit an existing api_config for the current organization
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
PUT /ux/common/apiregister/profile/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 803
{
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
This endpoint is used to delete an existing api_config for the current organization
No response body
No content
DELETE /ux/common/apiregister/profile/{id}/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
No response body
No content
API endpoint that allows API's to be viewed or edited.
GET /ux/common/apiregister/profile/allapi-list/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
API endpoint that allows API's to be viewed or edited.
GET /ux/common/apiregister/profile/api_search/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
API endpoint that allows API's to be viewed or edited.
GET /ux/common/apiregister/profile/options/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Accept: */*
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
API endpoint that allows API's to be viewed or edited.
Serializer for Documents.
Recognized primitve fields:
* ``StringField``
* ``URLField``
* ``EmailField``
* ``IntField``
* ``LongField``
* ``FloatField``
* ``DecimalField``
* ``BooleanField``
* ``DateTimeField``
* ``ComplexDateTimeField``
* ``ObjectIdField``
* ``SequenceField`` (assumes it has integer counter)
* ``UUIDField``
* ``GeoPointField``
* ``GeoJsonBaseField`` (all those fields)
* ``DateField``
Compound fields: ListField
and DictField
are mapped to corresponding DRF fields, with respect to nested field specification.
The ReferenceField
is handled like ForeignKey
in DRF: there nested serializer autogenerated if serializer depth greater then 0, otherwise it's handled by it's own (results as str(id)
).
For EmbeddedDocumentField
also nested serializer autogenerated for non-zero depth, otherwise it is skipped. TODO: THIS IS PROBABLY WRONG AND SHOULD BE FIXED.
Generic fields GenericReferenceField
and GenericEmbeddedDocumentField
are handled by their own with corresponding serializer fields.
Not well supported or untested:
``FileField``
``ImageField``
``BinaryField``
All other fields are mapped to DocumentField
and probably will work wrong.
POST /ux/common/apiregister/profile/verify_api/ HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 803
{
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}
{
"id": "text",
"authentication_type": "text",
"api_id": "text",
"api_modified_id": "text",
"name": "text",
"api_url": "text",
"description": "text",
"client_id": "text",
"app_code": "text",
"secret_key": "text",
"user_name": "text",
"api_password": "text",
"is_base64_password": true,
"auth_key": "text",
"auth_value": "text",
"content_type": 1,
"auth_type": 1,
"add_key_to": 1,
"token_url": "text",
"token_prefix": "text",
"csrf_url": "text",
"token_key": "text",
"token_header_key": "text",
"token_body": "text",
"csrf_key": "text",
"request_type": 1,
"user": "text",
"header_params": [
{
"keys": "text",
"values": "text",
"queryparam": true
}
],
"api_type": 1,
"organization": "text",
"creation_time": "2025-08-31T06:37:47.423Z",
"last_update_time": "2025-08-31T06:37:47.423Z",
"is_deleted": true,
"is_active": true,
"is_base64": true,
"query_param": true,
"is_sandbox": true,
"sandbox_url": "text",
"is_webhook_enabled": true
}