Public
Documentation Settings

Magento Create Sub Seller on Getnet

Create sellers in Magento for later use in Split Payments.

AUTHORIZATIONBearer Token
Token

qc0kp7il59e2e9tj4f2klttpij060spu

Create Sub Seller

AUTHORIZATIONBearer Token
This folder is using Bearer Token from collectionMagento Create Sub Seller on Getnet

POSTWith Customer Id

https://getnet.loja.ninja/rest/default/V1/subSeller

Attention, it is imperative that the consumer has data:
CPF or CNPJ (which must be in the Taxvat or VatId attribute)
Birth date
Full address in Brazilian standard

DataTypeRequiredComment
load_data_by_customer_idinttrueCustomer Id for get data to create sub seller
bank_accountsarraytrueShipping node for bank account details.
account_typestringtrueAccount Type is:
C for Checking
P for Saving
bankstringtrueFEBRABRAN Number Code https://portal.febraban.org.br/pagina/3164/12/pt-br/associados
agencystringtrueAgency
agency_digitstringtrueAgency Digit.
Use 0 if it doesn't exist
accountstringtrueAccount Number
account_digitstringtrueAccount Number.
Use 0 if it doesn't exist
AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionMagento Create Sub Seller on Getnet
Bodyraw (json)
json
{
    "subSeller": {
        "load_data_by_customer_id": "8",
        "bank_accounts": [
            {
                "account_type": "C",
                "bank": "033",
                "agency": "4321",
                "agency_digit": "1",
                "account": "987654321",
                "account_digit": "0"
            }
        ]
    }
}
Example Request
curl
curl --location 'https://getnet.loja.ninja/rest/default/V1/subSeller' \
--data '{
    "subSeller": {
        "load_data_by_customer_id": "8",
        "bank_accounts": [
            {
                "account_type": "C",
                "bank": "033",
                "agency": "4321",
                "agency_digit": "1",
                "account": "987654321",
                "account_digit": "0"
            }
        ]
    }
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers

POSTWith CPF

https://getnet.loja.ninja/rest/default/V1/subSeller

Creating sub seller with individual data.

DataTypeRequiredComment
codestringtrueInternal code of your sub seller
emailemailtrue
legal_document_numberstringtrueLegal document of Brazil.
legal_namestringtrueLegal Name
birth_datedatetrueBirth date.
Format: dd-mm-Y
addressesarraytrue
address_streetstringtrueStreet
address_street_numberstringtrueStreet Number
address_street_districtstringtrueStreet District
address_street_complementstringfalseStreet Complement
address_citystringtrueAddress City
address_regionstringtrueFederative Units of Brazil
address_postcodestringtrueCEP
address_country_idstringtrueCountry ISO code (BRA)
telephonestringtruePhone number with area code
bank_accountsarraytrueShipping node for bank account details.
account_typestringtrueAccount Type is:
C for Checking
P for Saving
bankstringtrueFEBRABRAN Number Code https://portal.febraban.org.br/pagina/3164/12/pt-br/associados
agencystringtrueAgency
agency_digitstringtrueAgency Digit.
Use 0 if it doesn't exist
accountstringtrueAccount Number
account_digitstringtrueAccount Number.
Use 0 if it doesn't exist
payment_planinttruePayment Plan ID (3)
accepted_contractbooleantrueDid the sub seller accept the contract?
marketplace_storebooleantrueIs the sub seller a marketplace store?
monthly_gross_incomedecimaltrueMonthly Gross Income
gross_equitydecimaltrueGross Equity
AUTHORIZATIONBearer Token
This request is using Bearer Token from collectionMagento Create Sub Seller on Getnet
Bodyraw (json)
json
{
    "subSeller": {
        "code": "33219059-9caa-4ffb-a68f-c67c60671c5e",
        "email": "Sammie_Ward91@example.org",
        "legal_document_number": "{{cpf}}",
        "legal_name": "Leonel Zemlak",
        "birth_date": "30-10-1985",
        "addresses": [
            {
                "address_street": "Av. Pernambuco",
                "address_street_number": "1483",
                "address_street_district": "São Geraldo",
                "address_street_complement": "1º Andar",
                "address_city": "Porto Alegre",
                "address_region": "RS",
                "address_postcode": "90240-004",
                "address_country_id": "BRA"
            }
        ],
        "telephone": "(34)98442-7885",
        "bank_accounts": [
            {
                "account_type": "C",
                "bank": "033",
                "agency": "4321",
                "agency_digit": "1",
                "account": "987654321",
                "account_digit": "0"
            }
        ],
        "payment_plan": 3,
        "accepted_contract": true,
        "marketplace_store": false,
        "monthly_gross_income": 1000,
        "gross_equity": 10000
    }
}
Example Request
curl
curl --location 'https://getnet.loja.ninja/rest/default/V1/subSeller' \
--data-raw '{
    "subSeller": {
        "code": "104d6c24-adc0-4e3f-8b5c-845f663dfd20",
        "email": "Joany44@example.org",
        "legal_document_number": "{{cpf}}",
        "legal_name": "Olin Connelly",
        "birth_date": "30-10-1985",
        "addresses": [
            {
                "address_street": "Av. Pernambuco",
                "address_street_number": "1483",
                "address_street_district": "São Geraldo",
                "address_street_complement": "1º Andar",
                "address_city": "Porto Alegre",
                "address_region": "RS",
                "address_postcode": "90240-004",
                "address_country_id": "BRA"
            }
        ],
        "telephone": "(34)98442-7885",
        "bank_accounts": [
            {
                "account_type": "C",
                "bank": "033",
                "agency": "4321",
                "agency_digit": "1",
                "account": "987654321",
                "account_digit": "0"
            }
        ],
        "payment_plan": 3,
        "accepted_contract": true,
        "marketplace_store": false,
        "monthly_gross_income": 1000,
        "gross_equity": 10000
    }
}'
Example Response
No response body
This request doesn't return any response body
No response headers
This request doesn't return any response headers