Emissão de NFS-e: ISS e local de prestação
Tributação do ISS e local de prestação. Por padrão a plataforma calcula o ISS automaticamente — issRate/taxationType são opcionais.
Cálculo manual do ISS (issRate)
issRate é opcional. Por padrão a plataforma calcula o ISS automaticamente; informe-o apenas para cálculo manual. Veja Cálculo manual de impostos.
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Paulista",
"number": "1000",
"district": "Bela Vista",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"issRate": 0.05,
"taxationType": "WithinCity"
}
ISS isento
taxationType=Free para serviços isentos do ISS.
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Paulista",
"number": "1000",
"district": "Bela Vista",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"taxationType": "Free"
}
ISS imune
taxationType=Immune + immunityType (imunidade constitucional).
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Paulista",
"number": "1000",
"district": "Bela Vista",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"taxationType": "Immune",
"immunityType": "Temples"
}
ISS com exigibilidade suspensa
taxationType=SuspendedCourtDecision + grupo suspension.
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Paulista",
"number": "1000",
"district": "Bela Vista",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"taxationType": "SuspendedCourtDecision",
"suspension": {
"reason": "1",
"processNumber": "0012345-67.2026"
}
}
Informar local de prestação
Grupo location indica onde o serviço foi prestado.
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Paulista",
"number": "1000",
"district": "Bela Vista",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"location": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Exemplo",
"number": "1000",
"district": "Centro",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
}
Serviço prestado fora do município
taxationType=OutsideCity + location no município da prestação (ISS devido fora).
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Paulista",
"number": "1000",
"district": "Bela Vista",
"city": {
"code": "3550308",
"name": "São Paulo"
},
"state": "SP"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"taxationType": "OutsideCity",
"location": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Exemplo",
"number": "1000",
"district": "Centro",
"city": {
"code": "3509502",
"name": "Campinas"
},
"state": "SP"
}
}
Três municípios
Prestador, tomador e prestação em municípios distintos.
{
"borrower": {
"type": "LegalEntity",
"name": "EMPRESA TOMADORA EXEMPLO LTDA",
"federalTaxNumber": 11222333000181,
"email": "[email protected]",
"address": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Exemplo",
"number": "1000",
"district": "Centro",
"city": {
"code": "3304557",
"name": "Rio de Janeiro"
},
"state": "RJ"
}
},
"cityServiceCode": "4444",
"description": "Serviço de consultoria (cenário exemplo).",
"servicesAmount": 1000.0,
"taxationType": "OutsideCity",
"location": {
"country": "BRA",
"postalCode": "01311-000",
"street": "Avenida Exemplo",
"number": "1000",
"district": "Centro",
"city": {
"code": "3106200",
"name": "Belo Horizonte"
},
"state": "MG"
}
}