Skip to main content
POST
/
businesses
/
{id}
/
registration_information
Create or update business registration information
curl --request POST \
  --url https://api.pocketflows.com/businesses/{id}/registration_information \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '{
  "business_name": "<string>",
  "business_type": "<string>",
  "business_industry": "<string>",
  "business_registration_identifier": "<string>",
  "business_registration_number": "<string>",
  "business_identity": "<string>",
  "business_regime_of_operation": "<string>",
  "company_type": "<string>",
  "website_url": "<string>",
  "social_media_profiles_urls": [
    "<string>"
  ],
  "street_address": "<string>",
  "street_address_line_2": "<string>",
  "city": "<string>",
  "region": "<string>",
  "postal_code": "<string>",
  "iso_country_code": "<string>",
  "contact": {
    "first_name": "<string>",
    "last_name": "<string>",
    "title": "<string>",
    "job_position": "<string>",
    "phone_number": "<string>",
    "email_address": "<string>"
  }
}'
{
  "id": "<string>",
  "business_name": "<string>",
  "business_type": "<string>",
  "business_industry": "<string>",
  "business_registration_identifier": "<string>",
  "business_registration_number": "<string>",
  "business_identity": "<string>",
  "business_regime_of_operation": "<string>",
  "company_type": "<string>",
  "website_url": "<string>",
  "social_media_profiles_urls": [
    "<string>"
  ],
  "street_address": "<string>",
  "street_address_line_2": "<string>",
  "city": "<string>",
  "region": "<string>",
  "postal_code": "<string>",
  "iso_country_code": "<string>",
  "contact": {
    "first_name": "<string>",
    "last_name": "<string>",
    "title": "<string>",
    "job_position": "<string>",
    "phone_number": "<string>",
    "email_address": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the business

Body

application/json
business_name
string | null

Business name

business_type
string | null

Business type

business_industry
string | null

Business industry

business_registration_identifier
string | null

Business registration identifier

business_registration_number
string | null

Business registration number

business_identity
string | null

Business identity

business_regime_of_operation
string | null

Business regime of operation

company_type
string | null

Company type

website_url
string | null

Website URL

social_media_profiles_urls
string[] | null

Social media profile URLs

street_address
string | null

Street address

street_address_line_2
string | null

Street address line 2

city
string | null

City

region
string | null

Region/state

postal_code
string | null

Postal code

iso_country_code
string | null

ISO country code

contact
object | null

Contact person information

Response

200 - application/json

The created or updated business registration information

id
string
required

The ID of the business registration information

business_name
string | null
required

The business's legal name

business_type
string | null
required

Business type

business_industry
string | null
required

Business industry

business_registration_identifier
string | null
required

Business registration identifier

business_registration_number
string | null
required

Business registration number

business_identity
string | null
required

Business identity

business_regime_of_operation
string | null
required

Business regime of operation

company_type
string | null
required

Company type

website_url
string | null
required

Website URL

social_media_profiles_urls
string[] | null
required

Social media profile URLs

street_address
string | null
required

Street address

street_address_line_2
string | null
required

Street address line 2

city
string | null
required

City

region
string | null
required

Region/state

postal_code
string | null
required

Postal code

iso_country_code
string | null
required

ISO country code

contact
object | null
required

Contact person information

I